<?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: Response Surface in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Response-Surface/m-p/41169#M24004</link>
    <description>&lt;P&gt;The colour scheme you apply via 'Sheet Properties' is intended to help you visualise the shape of the surface, and there is a lot of flexibility. In the case of the 'Discrete&amp;nbsp;Gradients' Fill Type, you can change the 'Surface Color Theme' (to one of the supplied themes, or one you have made up), define the number of 'Gradient Levels' (the number of colours), and 'spread' these colours over the range of the data, or over the range of the axis that's currently shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With some care, you should be able to 'see', where the boundaries are and (knowing what options you have applied), you could calculate them if you wanted to. For example, in this case, the highest boundary appears to be at about 170:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/tiretread.jmp");
sp = dt &amp;lt;&amp;lt; Surface Plot(
	Columns( :Pred Formula ABRASION, :ABRASION, :MODULUS ),
	Lock Z Scale( 1 ),
	Datapoints Choice( "Points" ),
	Z Grid Position( 130 ),
	Surface Color Theme( "Green to Black to Red" ),
	Surface Gradient Type( "Discrete Gradients" ),
	Formula( "Pred Formula ABRASION" ),
	Response( :ABRASION ),
	Surface Color Method( :Pred Formula ABRASION, "Solid", "Solid", "Solid" ),
	SetVariableAxis( :SILICA, Axis Data( {} ) ),
	SetVariableAxis( :SILANE, Axis Data( {} ) ),
	SetZAxis(
		Pred Formula ABRASION,
		Current Value( 130 ),
		Axis Data(
			{Min( 45.0232558139535 ), Max( 220 ), Inc( 50 ), Minor Ticks( 1 )}
		)
	),
	SetXVariable( :SILICA ),
	SetYVariable( :SILANE ),
	Iso Value( 0, 139.119238722664 ),
	Frame3D(
		Set Rotation( -90.8594176470491, -0.15205112334844, 58.1091217394078 )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To answer a couple&amp;nbsp;of your questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Beacsue of the options you have specified, then, 'yes' bright red shows the highest values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure if 'dark red' denotes a stable region, since that depends on how you want to define the latter. If you want to optimise a response, you might also consider using the &lt;A href="http://www.jmp.com/support/help/Profiler.shtml" target="_self"&gt;Profilier&lt;/A&gt;, possibly with monte carlo simulation if you are concerned with robustness.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Jun 2017 09:00:31 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2017-06-26T09:00:31Z</dc:date>
    <item>
      <title>Response Surface</title>
      <link>https://community.jmp.com/t5/Discussions/Response-Surface/m-p/40753#M23804</link>
      <description>&lt;P&gt;Dear JMP Experts,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the attached picture I created a surface plot with the graph-surface plot function. I created a color scheme with discrete color option. I am wondering what is the cut-off points for each of the colors? In another word, does the bright red mean the highest results? Does the dark red mean the stable region? How can I find explanations? Is there a way to show the cut off points for the independent variables by the color? Or does the color change mean anything at all?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you a million!&amp;nbsp;&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="Reponse Surface .png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/6507i7487CAE713017582/image-size/large?v=v2&amp;amp;px=999" role="button" title="Reponse Surface .png" alt="Reponse Surface .png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 21:03:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Response-Surface/m-p/40753#M23804</guid>
      <dc:creator>xiaoyaj0</dc:creator>
      <dc:date>2017-06-19T21:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Response Surface</title>
      <link>https://community.jmp.com/t5/Discussions/Response-Surface/m-p/41169#M24004</link>
      <description>&lt;P&gt;The colour scheme you apply via 'Sheet Properties' is intended to help you visualise the shape of the surface, and there is a lot of flexibility. In the case of the 'Discrete&amp;nbsp;Gradients' Fill Type, you can change the 'Surface Color Theme' (to one of the supplied themes, or one you have made up), define the number of 'Gradient Levels' (the number of colours), and 'spread' these colours over the range of the data, or over the range of the axis that's currently shown.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With some care, you should be able to 'see', where the boundaries are and (knowing what options you have applied), you could calculate them if you wanted to. For example, in this case, the highest boundary appears to be at about 170:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/tiretread.jmp");
sp = dt &amp;lt;&amp;lt; Surface Plot(
	Columns( :Pred Formula ABRASION, :ABRASION, :MODULUS ),
	Lock Z Scale( 1 ),
	Datapoints Choice( "Points" ),
	Z Grid Position( 130 ),
	Surface Color Theme( "Green to Black to Red" ),
	Surface Gradient Type( "Discrete Gradients" ),
	Formula( "Pred Formula ABRASION" ),
	Response( :ABRASION ),
	Surface Color Method( :Pred Formula ABRASION, "Solid", "Solid", "Solid" ),
	SetVariableAxis( :SILICA, Axis Data( {} ) ),
	SetVariableAxis( :SILANE, Axis Data( {} ) ),
	SetZAxis(
		Pred Formula ABRASION,
		Current Value( 130 ),
		Axis Data(
			{Min( 45.0232558139535 ), Max( 220 ), Inc( 50 ), Minor Ticks( 1 )}
		)
	),
	SetXVariable( :SILICA ),
	SetYVariable( :SILANE ),
	Iso Value( 0, 139.119238722664 ),
	Frame3D(
		Set Rotation( -90.8594176470491, -0.15205112334844, 58.1091217394078 )
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To answer a couple&amp;nbsp;of your questions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Beacsue of the options you have specified, then, 'yes' bright red shows the highest values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure if 'dark red' denotes a stable region, since that depends on how you want to define the latter. If you want to optimise a response, you might also consider using the &lt;A href="http://www.jmp.com/support/help/Profiler.shtml" target="_self"&gt;Profilier&lt;/A&gt;, possibly with monte carlo simulation if you are concerned with robustness.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2017 09:00:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Response-Surface/m-p/41169#M24004</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-06-26T09:00:31Z</dc:date>
    </item>
  </channel>
</rss>

