<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Heatmap: color for Missing Values? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/634814#M83289</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I am sorry you have not received a response yet. I am guessing it is because no one has a solution.&lt;/P&gt;
&lt;P&gt;I had a quick look and I can't see how to do it.&lt;/P&gt;
&lt;P&gt;This is probably good question for technical support (email: &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;) and/or the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Sorry I could not provide more help,&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
    <pubDate>Wed, 24 May 2023 12:13:06 GMT</pubDate>
    <dc:creator>Phil_Kay</dc:creator>
    <dc:date>2023-05-24T12:13:06Z</dc:date>
    <item>
      <title>Heatmap: color for Missing Values?</title>
      <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/629280#M82748</link>
      <description>&lt;P&gt;In Graph Builder, there is a special color ("&lt;EM&gt;&lt;STRONG&gt;Missing&lt;/STRONG&gt;&lt;/EM&gt;"), which is used if the entry of the color column is empty in the respective row.&lt;BR /&gt;Very convenient.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This functionality is enabled for &lt;STRONG&gt;Points&lt;/STRONG&gt;, &lt;STRONG&gt;Bar&lt;/STRONG&gt;, &lt;STRONG&gt;Heatmap&lt;/STRONG&gt; and &lt;STRONG&gt;Treemap&lt;/STRONG&gt; plots, if a column with modeling type &lt;STRONG&gt;ordinal&lt;/STRONG&gt; or &lt;STRONG&gt;nominal&lt;/STRONG&gt; is used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This functionality is enabled for Points, Bar, and Treemap plots, if a column with modeling type &lt;STRONG&gt;continuous&lt;/STRONG&gt; is used.&lt;/P&gt;&lt;P&gt;On the other hand, this functionality is &lt;STRONG&gt;not&lt;/STRONG&gt; enabled by default for &lt;STRONG&gt;Heatmap&lt;/STRONG&gt; plots&amp;nbsp;if a column with modeling type &lt;STRONG&gt;continuous&lt;/STRONG&gt; is used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What do I have to do to enable it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;top part: &lt;STRONG&gt;Points&lt;/STRONG&gt; (points with "missing" color)&lt;/P&gt;&lt;P&gt;bottom part: &lt;STRONG&gt;Heatmap&lt;/STRONG&gt; (tiles with "missing" color are missing)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1683319041752.png" style="width: 644px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/52599i1CC331A49BDC1E9B/image-dimensions/644x144?v=v2" width="644" height="144" role="button" title="hogi_0-1683319041752.png" alt="hogi_0-1683319041752.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;➥ &lt;A href="https://community.jmp.com/t5/Discussions/Tiny-Traps-in-Jmp-and-JSL/m-p/702685#U702685" target="_blank"&gt;Tiny-Traps-in-Jmp-and-JSL&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

dt &amp;lt;&amp;lt; New Column( "one",&amp;lt;&amp;lt;Set Each Value( 1 ) );
	
dt:age[5::20]=.;

Graph Builder(
	Variables( X( :name ), Y( :one ), Y( :one ), Color( :age ) ),
	Elements(
		Position( 1, 1 ),
		Points( X, Y, Legend( 12 ), Jitter( "None" ) )
	),
	Elements( Position( 1, 2 ), Heatmap( X, Y, Legend( 7 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 20 ), Marker Drawing Mode( "Normal" )}
		)
	)
);

wait(2);

dt:age &amp;lt;&amp;lt; Set Modeling Type( "Continuous" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 08:37:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/629280#M82748</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-04T08:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap: color for Missing Values?</title>
      <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/634814#M83289</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;I am sorry you have not received a response yet. I am guessing it is because no one has a solution.&lt;/P&gt;
&lt;P&gt;I had a quick look and I can't see how to do it.&lt;/P&gt;
&lt;P&gt;This is probably good question for technical support (email: &lt;A href="mailto:support@jmp.com" target="_blank"&gt;support@jmp.com&lt;/A&gt;) and/or the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Sorry I could not provide more help,&lt;/P&gt;
&lt;P&gt;Phil&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 12:13:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/634814#M83289</guid>
      <dc:creator>Phil_Kay</dc:creator>
      <dc:date>2023-05-24T12:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap: color for Missing Values?</title>
      <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/634948#M83305</link>
      <description>&lt;P&gt;Oh, according to feedback from Support it's treated as a bug:&amp;nbsp;TS-00042488&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 15:38:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/634948#M83305</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-05-24T15:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap: color for Missing Values?</title>
      <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/721855#M90372</link>
      <description>&lt;P&gt;update: In Jmp18, missing values will be displayed with color "missing":&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1707036103207.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60843iB58D9B4FCD268D5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1707036103207.png" alt="hogi_1-1707036103207.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Hm, I had some cases where ...&lt;BR /&gt;... the grass has a nice greenish color on the old side of the river ;)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Maybe in a future release there is an option to select one of the two options ...&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2024 19:38:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/721855#M90372</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-04T19:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Heatmap: color for Missing Values?</title>
      <link>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/722372#M90459</link>
      <description>&lt;P&gt;Easy trick to get to the green grass on the old side (no heatmap cells for missing color):&lt;BR /&gt;Use a transform column&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x_helper = if(is missing(:color_col),., :x_col)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 03:20:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Heatmap-color-for-Missing-Values/m-p/722372#M90459</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-07T03:20:25Z</dc:date>
    </item>
  </channel>
</rss>

