<?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 make automated adjustment for Contour Plot --&amp;gt; specify contours ( number, max, min) in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/260149#M51050</link>
    <description>&lt;P&gt;Can anyone help on this?&lt;BR /&gt;I am plotting multiple contour plot, and each of them has a different max,min.&lt;/P&gt;&lt;P&gt;To avoid setting the wrong (max, min) of contour plot and making the graph blackout, I need to manually adjust each map (max, min and number).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any jmp script or jmp setting to automate the contour plot&amp;nbsp;specify contours ( number, max, min) will help.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
    <pubDate>Thu, 23 Apr 2020 18:59:31 GMT</pubDate>
    <dc:creator>Stokes</dc:creator>
    <dc:date>2020-04-23T18:59:31Z</dc:date>
    <item>
      <title>How to make automated adjustment for Contour Plot --&gt; specify contours ( number, max, min)</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/260149#M51050</link>
      <description>&lt;P&gt;Can anyone help on this?&lt;BR /&gt;I am plotting multiple contour plot, and each of them has a different max,min.&lt;/P&gt;&lt;P&gt;To avoid setting the wrong (max, min) of contour plot and making the graph blackout, I need to manually adjust each map (max, min and number).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any jmp script or jmp setting to automate the contour plot&amp;nbsp;specify contours ( number, max, min) will help.&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 18:59:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/260149#M51050</guid>
      <dc:creator>Stokes</dc:creator>
      <dc:date>2020-04-23T18:59:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to make automated adjustment for Contour Plot --&gt; specify contours ( number, max, min)</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/260308#M51068</link>
      <description>&lt;P&gt;Where do the manual min, max and number come from?&amp;nbsp; Or is it just until it looks OK?&amp;nbsp; The setting of those values is easy,&amp;nbsp; if there are rules for what the values need to be.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 21:29:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/260308#M51068</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-04-23T21:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to make automated adjustment for Contour Plot --&gt; specify contours ( number, max, min)</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/276666#M53699</link>
      <description>&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;Hi Nelson, just saw your reply on this topic.&lt;/P&gt;
&lt;P&gt;I am trying to set up using Quantile (95%),&amp;nbsp;Quantile (85%),&amp;nbsp;Quantile (75%), etc as each bucket for the contour value.&lt;/P&gt;
&lt;P&gt;The Quantile ( ) is by a group of "model" and "type", i.e. column :model, : type,&lt;/P&gt;
&lt;P&gt;So it will be&amp;nbsp;Col Quantile(:power, 0.05, :model, :type)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One example as below,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Contour Plot(
    X( :x, :y ),
    Y( :power ),
    Show Data Points( 0 ),
    Fill Areas( 1 ),
    Label Contours( 0 ),
    Transform( "None" ),
    Specify Contours(
        Min( 0 ),
        Max( 8 ),
        N( 8 ),
        Contour( 1, Col Quantile( :power, 0.05, :model, :type ), Col Quantile( :power, 0.15, :model, :type ) ),
        Contour( 2, Col Quantile( :power, 0.15, :model, :type ), Col Quantile( :power, 0.25, :model, :type ) ),
        Contour( 3, Col Quantile( :power, 0.25, :model, :type ), Col Quantile( :power, 0.35, :model, :type ) ),
        Contour( 4, Col Quantile( :power, 0.35, :model, :type ), Col Quantile( :power, 0.45, :model, :type ) ),
        Contour( 5, Col Quantile( :power, 0.45, :model, :type ), Col Quantile( :power, 0.55, :model, :type ) ),
        Contour( 6, Col Quantile( :power, 0.55, :model, :type ), Col Quantile( :power, 0.65, :model, :type ) ),
        Contour( 7, Col Quantile( :power, 0.65, :model, :type ), Col Quantile( :power, 0.75, :model, :type ) ),
        Contour( 8, Col Quantile( :power, 0.75, :model, :type ), Col Quantile( :power, 0.85, :model, :type ) ),
        Contour( 9, Col Quantile( :power, 0.85, :model, :type ), Col Quantile( :power, 0.95, :model, :type ) ),

    ),
    SendToReport( Dispatch( {}, "Contour Legend", FrameBox, {Frame Size( 92, 247 )} ) )
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Jul 2020 17:51:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-automated-adjustment-for-Contour-Plot-gt-specify/m-p/276666#M53699</guid>
      <dc:creator>Stokes</dc:creator>
      <dc:date>2020-07-02T17:51:36Z</dc:date>
    </item>
  </channel>
</rss>

