<?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: Fit least square ==&amp;gt; asking for control level. in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Fit-least-square-gt-asking-for-control-level/m-p/351779#M60126</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14540"&gt;@yanee&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;It's hard to know for sure why this is happening, but I suspect your colleague has set a preference to perform Dunnett's test automatically, which requires the specification of a control level. That preference can be found under Preferences &amp;gt; Platforms &amp;gt; Effect Fit.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pref.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29640iD319BBB6A18E5E85/image-size/large?v=v2&amp;amp;px=999" role="button" title="pref.png" alt="pref.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you would like to ignore platform preferences when running your script, you can use&amp;nbsp;Ignore Platform Preferences( 1 ) in your call to Fit Model(). Here's what that looks like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;for (i=1, i &amp;lt;= n items (temp_list), i++,
		vlb1 &amp;lt;&amp;lt; append(
		fit = Fit Model(
		Ignore Platform Preferences( 1 ),
		Y( temp_list[i] ),
		by(:class),
		Effects( :Name( "~DEVICE TYPE" ), :Name( "~STAGE" ) ),
		Personality( "Standard Least Squares" ),
		Emphasis( "Minimal Report" ),
		Run(
			Profiler(
				1,
				Confidence Intervals( 1 )
			)
		)
		
		);
		fit &amp;lt;&amp;lt; prediction formula;
		)	
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Jan 2021 15:22:42 GMT</pubDate>
    <dc:creator>jules</dc:creator>
    <dc:date>2021-01-22T15:22:42Z</dc:date>
    <item>
      <title>Fit least square ==&gt; asking for control level.</title>
      <link>https://community.jmp.com/t5/Discussions/Fit-least-square-gt-asking-for-control-level/m-p/351358#M60091</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wrote below script (simple fit least square but the effects are categorical) and it worked fine on my system (JMP 15.1). When my college try this script on his computer (JMP 15.0).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When he ran this script, it showed pop up menu asking for control level - see picture.&lt;/P&gt;&lt;P&gt;I manually plotted the least square on his computer and it showed the same message - asking for control level.&lt;/P&gt;&lt;P&gt;If I clicked cancel, then the fit least square showed up.&lt;/P&gt;&lt;P&gt;How do we turn off this control level thing ?&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="yanee_0-1611198234081.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29606i594ED3B65DA896BA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="yanee_0-1611198234081.png" alt="yanee_0-1611198234081.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;for (i=1, i &amp;lt;= n items (temp_list), i++,
		vlb1 &amp;lt;&amp;lt; append(
		fit = Fit Model(
		Y( temp_list[i] ),
		by(:class),
		Effects( :Name( "~DEVICE TYPE" ), :Name( "~STAGE" ) ),
		Personality( "Standard Least Squares" ),
		Emphasis( "Minimal Report" ),
		Run(
			Profiler(
				1,
				Confidence Intervals( 1 )
			)
		)
		
		);
		fit &amp;lt;&amp;lt; prediction formula;
		)	
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:10:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Fit-least-square-gt-asking-for-control-level/m-p/351358#M60091</guid>
      <dc:creator>yanee</dc:creator>
      <dc:date>2023-06-11T11:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fit least square ==&gt; asking for control level.</title>
      <link>https://community.jmp.com/t5/Discussions/Fit-least-square-gt-asking-for-control-level/m-p/351779#M60126</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14540"&gt;@yanee&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;It's hard to know for sure why this is happening, but I suspect your colleague has set a preference to perform Dunnett's test automatically, which requires the specification of a control level. That preference can be found under Preferences &amp;gt; Platforms &amp;gt; Effect Fit.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pref.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29640iD319BBB6A18E5E85/image-size/large?v=v2&amp;amp;px=999" role="button" title="pref.png" alt="pref.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you would like to ignore platform preferences when running your script, you can use&amp;nbsp;Ignore Platform Preferences( 1 ) in your call to Fit Model(). Here's what that looks like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;for (i=1, i &amp;lt;= n items (temp_list), i++,
		vlb1 &amp;lt;&amp;lt; append(
		fit = Fit Model(
		Ignore Platform Preferences( 1 ),
		Y( temp_list[i] ),
		by(:class),
		Effects( :Name( "~DEVICE TYPE" ), :Name( "~STAGE" ) ),
		Personality( "Standard Least Squares" ),
		Emphasis( "Minimal Report" ),
		Run(
			Profiler(
				1,
				Confidence Intervals( 1 )
			)
		)
		
		);
		fit &amp;lt;&amp;lt; prediction formula;
		)	
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jan 2021 15:22:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Fit-least-square-gt-asking-for-control-level/m-p/351779#M60126</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2021-01-22T15:22:42Z</dc:date>
    </item>
  </channel>
</rss>

