<?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: How to read and update Effect content in the fit model with JSL? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-read-and-update-Effect-content-in-the-fit-model-with-JSL/m-p/632011#M83039</link>
    <description>&lt;P&gt;Here's an example using Big Class.JMP.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Fit Model(
	Y( :weight ),
	Effects( :height, :sex, :sex * :height ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:weight &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 1 ),
		Parameter Estimates( 1 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 1 ), Plot Residual by Predicted( 1 ),
		Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
		Plot Residual by Normal Quantiles( 0 ), Box Cox Y Transformation( 0 )}
	)
);

Fit Model(
	Y( :weight ),
	Effects( :height, :sex * :height ),
	Random Effects( :sex ),
	NoBounds( 1 ),
	Personality( "Standard Least Squares" ),
	Method( "REML" ),
	Emphasis( "Minimal Report" ),
	Run(
		:weight &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
		Parameter Estimates( 1 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 0 ), Plot Residual by Predicted( 0 ),
		Plot Studentized Residuals( 0 ), Plot Effect Leverage( 0 ),
		Plot Residual by Normal Quantiles( 0 )}
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In the first model there are two terms and their interaction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second model has :sex added as a random effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A good way to see the difference in the Model's JSL it to create it without the desired feature and with the desired feature and compare the two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 15 May 2023 19:50:39 GMT</pubDate>
    <dc:creator>Byron_JMP</dc:creator>
    <dc:date>2023-05-15T19:50:39Z</dc:date>
    <item>
      <title>How to read and update Effect content in the fit model with JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-read-and-update-Effect-content-in-the-fit-model-with-JSL/m-p/622681#M82167</link>
      <description>Hi folks,&lt;BR /&gt;&lt;BR /&gt;I have several models in the JMP data table, I know how to read the scripts with JSL. Is there any easy way to extract the effect from this script, make changes and replace with a new effect? If Block is inside the model effect, I need to change it into a random effect to run model again with REML. Thank you so much for your help.</description>
      <pubDate>Fri, 09 Jun 2023 16:08:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-read-and-update-Effect-content-in-the-fit-model-with-JSL/m-p/622681#M82167</guid>
      <dc:creator>lazzybug</dc:creator>
      <dc:date>2023-06-09T16:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to read and update Effect content in the fit model with JSL?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-read-and-update-Effect-content-in-the-fit-model-with-JSL/m-p/632011#M83039</link>
      <description>&lt;P&gt;Here's an example using Big Class.JMP.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Fit Model(
	Y( :weight ),
	Effects( :height, :sex, :sex * :height ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:weight &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 1 ),
		Parameter Estimates( 1 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 1 ), Plot Residual by Predicted( 1 ),
		Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
		Plot Residual by Normal Quantiles( 0 ), Box Cox Y Transformation( 0 )}
	)
);

Fit Model(
	Y( :weight ),
	Effects( :height, :sex * :height ),
	Random Effects( :sex ),
	NoBounds( 1 ),
	Personality( "Standard Least Squares" ),
	Method( "REML" ),
	Emphasis( "Minimal Report" ),
	Run(
		:weight &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
		Parameter Estimates( 1 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 0 ), Plot Residual by Predicted( 0 ),
		Plot Studentized Residuals( 0 ), Plot Effect Leverage( 0 ),
		Plot Residual by Normal Quantiles( 0 )}
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In the first model there are two terms and their interaction.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second model has :sex added as a random effect.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A good way to see the difference in the Model's JSL it to create it without the desired feature and with the desired feature and compare the two.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2023 19:50:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-read-and-update-Effect-content-in-the-fit-model-with-JSL/m-p/632011#M83039</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2023-05-15T19:50:39Z</dc:date>
    </item>
  </channel>
</rss>

