<?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: creating a map of cell by cell value in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450315#M69707</link>
    <description>&lt;P&gt;Building on the reply from&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;,&amp;nbsp;please find attached some (now rather old) code that might get you started. It probably does more (and perhaps less . . . ) than you need. Use 'Help &amp;gt; Scripting Guide' and other documentation to figure out how it works.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jan 2022 17:24:16 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2022-01-10T17:24:16Z</dc:date>
    <item>
      <title>creating a map of cell by cell value</title>
      <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450122#M69698</link>
      <description>&lt;P&gt;Hi JMPers,&lt;/P&gt;&lt;P&gt;I'm trying to create a plot of column Z by a matrix of X &amp;amp; Y, (X &amp;amp; Y have discrete values, Z is continues).&lt;/P&gt;&lt;P&gt;was only able to create contour plots but I'm trying to get something like this:&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="ba5d7464-ef05-4447-a83d-51f75bec5a0f.jpg" style="width: 497px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/38870iC56B962ABC97E8FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="ba5d7464-ef05-4447-a83d-51f75bec5a0f.jpg" alt="ba5d7464-ef05-4447-a83d-51f75bec5a0f.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does anyone have an Idea?&lt;/P&gt;&lt;P&gt;would love a solution in&amp;nbsp; a script format....&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:20:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450122#M69698</guid>
      <dc:creator>Boaz</dc:creator>
      <dc:date>2023-06-11T11:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: creating a map of cell by cell value</title>
      <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450286#M69702</link>
      <description>&lt;P&gt;I suggest that you create a shape map of your x and y matrix, and then use Graph Builder to generate the choropleth map.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the Maps section in the Essential Graphics document in the JMP Documentation Library under the Help pull down menu&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 15:40:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450286#M69702</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-01-10T15:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: creating a map of cell by cell value</title>
      <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450315#M69707</link>
      <description>&lt;P&gt;Building on the reply from&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;,&amp;nbsp;please find attached some (now rather old) code that might get you started. It probably does more (and perhaps less . . . ) than you need. Use 'Help &amp;gt; Scripting Guide' and other documentation to figure out how it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 17:24:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450315#M69707</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2022-01-10T17:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: creating a map of cell by cell value</title>
      <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450645#M69749</link>
      <description>&lt;P&gt;Hi Boaz,&lt;BR /&gt;What you are showing would be accomplished with the Heatmap option from Graph Builder.&amp;nbsp; Please refer to this script for an example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Wafer Stacked.jmp" );
dt:X_Die &amp;lt;&amp;lt; Set Modeling Type( "Ordinal" );
dt:Y_Die &amp;lt;&amp;lt; Set Modeling Type( "Ordinal" );
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 554, 521 ),
	Show Control Panel( 0 ),
	Variables( X( :X_Die ), Y( :Y_Die ), Color( :Defects ) ),
	Elements( Heatmap( X, Y, Legend( 4 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV id="tinyMceEditor_9ac95af406272amzwald_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="wafermap.jpg" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/38922i32F6F910EA723B96/image-size/large?v=v2&amp;amp;px=999" role="button" title="wafermap.jpg" alt="wafermap.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jan 2022 22:06:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450645#M69749</guid>
      <dc:creator>Mark_Zwald</dc:creator>
      <dc:date>2022-01-11T22:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: creating a map of cell by cell value</title>
      <link>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450732#M69759</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Got exactly what I wanted!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 09:12:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/creating-a-map-of-cell-by-cell-value/m-p/450732#M69759</guid>
      <dc:creator>Boaz</dc:creator>
      <dc:date>2022-01-12T09:12:10Z</dc:date>
    </item>
  </channel>
</rss>

