<?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 write text into a JMP report, Fit model in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421464#M67033</link>
    <description>&lt;P&gt;My bad, I forgot to upload the JMP file with the data.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 27 Sep 2021 22:35:55 GMT</pubDate>
    <dc:creator>kachveder</dc:creator>
    <dc:date>2021-09-27T22:35:55Z</dc:date>
    <item>
      <title>How to write text into a JMP report, Fit model</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421463#M67032</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering if I could get some help with writing a note into a JMP script for fitting a model. I have the following JMP script that I want to add notes in for each model fit in the group of 4:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Fit Model(
	SendToByGroup( {:group 1 == "A", :group 2 == "C"} ),
// add a manual note here
	Y( :Y ),
	By( :group 1, :group 2 ),
	Effects( :X ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	SendToByGroup(
		{:group 1 == "A", :group 2 == "C"},
		Run(
			:Y &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 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "A", :group 2 == "D"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Lack of Fit( 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 ), Box Cox Y Transformation( 0 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "B", :group 2 == "C"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Lack of Fit( 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 ), Box Cox Y Transformation( 0 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "B", :group 2 == "D"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 1 ),
			Parameter Estimates( 1 ), Lack of Fit( 0 ), 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 )}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is there a way to write a note so that I can say, above the JMP output in the JMP report for a model fit "this is the model fit for ... which shows ..."&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 20:46:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421463#M67032</guid>
      <dc:creator>kachveder</dc:creator>
      <dc:date>2023-06-10T20:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to write text into a JMP report, Fit model</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421464#M67033</link>
      <description>&lt;P&gt;My bad, I forgot to upload the JMP file with the data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 22:35:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421464#M67033</guid>
      <dc:creator>kachveder</dc:creator>
      <dc:date>2021-09-27T22:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to write text into a JMP report, Fit model</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421505#M67038</link>
      <description>&lt;P&gt;I am not aware of being able to add a displayable note at the points in your script where you indicate, however, such notes can be added at the bottom of the script.&amp;nbsp; See my example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Current Data Table();
fm = Fit Model(By( :group 1, :group 2 ),
	SendToByGroup( {:group 1 == "A", :group 2 == "C"} ),
// add a manual note here
	Y( :Y ),
	Effects( :X ),
	Personality( "Standard Least Squares" ),
	Emphasis( "Effect Leverage" ),
	SendToByGroup(
		{:group 1 == "A", :group 2 == "C"},
		Run(
			:Y &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 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "A", :group 2 == "D"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Lack of Fit( 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 ), Box Cox Y Transformation( 0 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "B", :group 2 == "C"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Lack of Fit( 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 ), Box Cox Y Transformation( 0 )}
		)
	),
	SendToByGroup(
// add a manual note here
		{:group 1 == "B", :group 2 == "D"},
		Run(
			:Y &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 1 ),
			Parameter Estimates( 1 ), Lack of Fit( 0 ), 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 )}
		)
	)
);

(report(fm[1])["Response Y group 1=A, group 2=C"])&amp;lt;&amp;lt;prepend(text box("Note 1"));
(report(fm[2])[OutlineBox(1)])&amp;lt;&amp;lt;prepend(text box("Note 2"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Sep 2021 04:01:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-write-text-into-a-JMP-report-Fit-model/m-p/421505#M67038</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-09-28T04:01:14Z</dc:date>
    </item>
  </channel>
</rss>

