<?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 How to fix my x,y, on my Z HEIGHT coordinate Contour Map in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-fix-my-x-y-on-my-Z-HEIGHT-coordinate-Contour-Map/m-p/535761#M75804</link>
    <description>&lt;P&gt;Trying to use x,y coordinates to make boundaries for regions with a height of Z (indicated by the numbers in the drawing).&lt;BR /&gt;&lt;BR /&gt;I'm using JMP Pro 16.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="contaour plot.jpg" style="width: 300px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44891i91A597298E57EF11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="contaour plot.jpg" alt="contaour plot.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:27:13 GMT</pubDate>
    <dc:creator>MathLizard94313</dc:creator>
    <dc:date>2023-06-11T11:27:13Z</dc:date>
    <item>
      <title>How to fix my x,y, on my Z HEIGHT coordinate Contour Map</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-fix-my-x-y-on-my-Z-HEIGHT-coordinate-Contour-Map/m-p/535761#M75804</link>
      <description>&lt;P&gt;Trying to use x,y coordinates to make boundaries for regions with a height of Z (indicated by the numbers in the drawing).&lt;BR /&gt;&lt;BR /&gt;I'm using JMP Pro 16.&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="contaour plot.jpg" style="width: 300px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44891i91A597298E57EF11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="contaour plot.jpg" alt="contaour plot.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:27:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-fix-my-x-y-on-my-Z-HEIGHT-coordinate-Contour-Map/m-p/535761#M75804</guid>
      <dc:creator>MathLizard94313</dc:creator>
      <dc:date>2023-06-11T11:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix my x,y, on my Z HEIGHT coordinate Contour Map</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-fix-my-x-y-on-my-Z-HEIGHT-coordinate-Contour-Map/m-p/535798#M75807</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;field=[
1 1 1 1 3 3 3 3 3 4 4 4 4 4 2,
1 1 1 3 3 3 3 3 4 4 4 4 4 2 2,
1 1 3 3 3 3 3 4 4 4 4 4 2 2 2,
1 3 3 3 3 3 4 4 4 4 4 2 2 2 2,
3 3 3 3 3 4 4 4 4 4 2 2 2 2 2,
3 3 3 3 4 4 4 4 4 2 2 2 2 2 1,
3 3 3 4 4 4 4 4 2 2 2 2 2 1 1,
3 3 4 4 4 4 4 2 2 2 2 2 1 1 1,
3 4 4 4 4 4 2 2 2 2 2 1 1 1 1,
4 4 4 4 4 2 2 2 2 2 1 1 1 1 1,
4 4 4 4 2 2 2 2 2 1 1 1 1 1 2,
4 4 4 2 2 2 2 2 1 1 1 1 1 2 2,
4 4 2 2 2 2 2 1 1 1 1 1 2 2 2,
4 2 2 2 2 2 1 1 1 1 1 2 2 2 2,
2 2 2 2 2 1 1 1 1 1 2 2 2 2 2
];

dt = New Table( "grid",
    New Column( "x", Numeric, "Continuous", Format( "Best", 12 ) ),
    New Column( "y", Numeric, "Continuous", Format( "Best", 12 ) ),
    New Column( "z", Numeric, "Continuous", Format( "Best", 12 ) )
);
For( ix = 1, ix &amp;lt;= N Cols( field ), ix += 1,
    For( iy = 1, iy &amp;lt;= N Rows( field ), iy += 1,
        dt &amp;lt;&amp;lt; addrows( 1 );
        dt:x[N Rows( dt )] = ix;
        dt:y[N Rows( dt )] = nrows(field) + 1 - iy; // flip vertical axis
        dt:z[N Rows( dt )] = field[iy, ix];
    )
);
 
dt &amp;lt;&amp;lt; Graph Builder(
    Size( 521, 452 ),
    Show Control Panel( 0 ),
    Variables( X( :x ), Y( :y ), Overlay( :z ) ),
    Elements( Contour( X, Y, Legend( 5 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Contours" style="width: 589px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/44896iFB71106FE593C959/image-size/large?v=v2&amp;amp;px=999" role="button" title="grid - Graph Builder.png" alt="Contours" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Contours&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Aug 2022 03:08:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-fix-my-x-y-on-my-Z-HEIGHT-coordinate-Contour-Map/m-p/535798#M75807</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2022-08-21T03:08:14Z</dc:date>
    </item>
  </channel>
</rss>

