<?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: Reporting of data from LSMeans Differences Student's t in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813705#M99522</link>
    <description>&lt;P&gt;Welcome to the JMP Community.&lt;/P&gt;
&lt;P&gt;I think there is a mix up between the data table you attached and the script you attached.&amp;nbsp; The references in the script to the columns to be analyzed do not match the columns in the attached data table.&lt;/P&gt;
&lt;P&gt;If you can provide the correct attachments I am sure the Community will be able to assist you in your efforts.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Nov 2024 11:52:01 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-11-18T11:52:01Z</dc:date>
    <item>
      <title>Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813688#M99515</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I am trying to make a report with specific data from the table of LSMeans Differences Student's t:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_0-1731921303275.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70334i6E714CB635376B5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_0-1731921303275.png" alt="Juli_0-1731921303275.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I would like a table with one of the formats as below:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_1-1731921761984.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70335i3089B0FED5AA2E67/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_1-1731921761984.png" alt="Juli_1-1731921761984.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_0-1731923239812.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70338i5A6D35126FCE0210/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_0-1731923239812.png" alt="Juli_0-1731923239812.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;P&gt;Sadly, I cannot get it to print correctly for the mean and it cannot take data from the bigger table. I get the below&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_3-1731922050015.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70337iCBEDA8E37DC89C6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_3-1731922050015.png" alt="Juli_3-1731922050015.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried the following code, where I have altered the '17' to numbers from 1-30 and nothing works - 17 is for a different outline box:&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;sd = Open( "test_table.jmp" );&lt;BR /&gt;&lt;BR /&gt;Fitmod = Fit Model(&lt;BR /&gt;Y( :"Test value"n ),&lt;BR /&gt;Effects( :Person ),&lt;BR /&gt;Random Effects( :Day[:Person] ),&lt;BR /&gt;NoBounds( 0 ),&lt;BR /&gt;Personality( "Standard Least Squares" ),&lt;BR /&gt;Method( "REML" ),&lt;BR /&gt;Emphasis( "Effect Leverage" ),&lt;BR /&gt;Run(&lt;BR /&gt;:"Test value"n &amp;lt;&amp;lt; {Summary of Fit( 1 ),&lt;BR /&gt;Analysis of Variance( 0 ), Parameter Estimates( 1 ), Scaled Estimates( 0 ),&lt;BR /&gt;Plot Actual by Predicted( 1 ), Plot Regression( 0 ),&lt;BR /&gt;Plot Residual by Predicted( 1 ), Plot Studentized Residuals( 0 ),&lt;BR /&gt;Plot Effect Leverage( 1 ), Plot Residual by Normal Quantiles( 0 ),&lt;BR /&gt;{:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}&lt;BR /&gt;),&lt;BR /&gt;Where( :ID == "A1" ),&lt;BR /&gt;SendToReport(&lt;BR /&gt;Dispatch(&lt;BR /&gt;{"Test value ID=A1"},&lt;BR /&gt;"Whole Model",&lt;BR /&gt;OutlineBox,&lt;BR /&gt;{Close( 1 )}&lt;BR /&gt;),&lt;BR /&gt;Dispatch(&lt;BR /&gt;{"Test value ID=A1", "Person"},&lt;BR /&gt;"Leverage Plot",&lt;BR /&gt;OutlineBox,&lt;BR /&gt;{Close( 1 )}&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;report(Fitmod) [Outline Box( 2 )] &amp;lt;&amp;lt; Close( 0 );&lt;BR /&gt;reportFitmod = Fitmod &amp;lt;&amp;lt; Report;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;sumfit = reportFitmod[Outline Box( 17 )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix; 

meandiff = sumfit[1];
lowerCL = sumfit[3];
upperCL = sumfit[4];&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;term = reportFitmod[Outline Box( 13 )][String Col Box( 1 )] &amp;lt;&amp;lt; Get();&lt;BR /&gt;&lt;BR /&gt;est = reportFitmod[Outline Box( 13 )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix;&lt;BR /&gt;&lt;BR /&gt;dvalues = [];&lt;BR /&gt;dvalues = meandiff |/ lowerCL |/ upperCL ;&lt;BR /&gt;sfactor = term[2];&lt;BR /&gt;&lt;BR /&gt;dlg = New Window( "Custom Report",&lt;BR /&gt;Outline Box( "Selected Values",&lt;BR /&gt;Lineup Box( N Col( 2 ),&lt;BR /&gt;Text Box( "Factor of Interest: " ),&lt;BR /&gt;Text Box( sfactor ), ),&lt;BR /&gt;tb = Table Box(&lt;BR /&gt;&lt;BR /&gt;String Col Box( " ",&lt;BR /&gt;{"Mean difference: ", "Upper limit: ", "Lower limit: "}&lt;BR /&gt;),&lt;BR /&gt;Spacer Box( Size( 30, 30 ) ),&lt;BR /&gt;,&lt;BR /&gt;Spacer Box( Size( 0, 30 ) ),&lt;BR /&gt;,&lt;BR /&gt;Table Box(&lt;BR /&gt;CloneTerm,&lt;BR /&gt;Spacer Box( Size( 10, 0 ) ),&lt;BR /&gt;,&lt;BR /&gt;Number Col Box( "Estimate", est ),&lt;BR /&gt;Spacer Box( Size( 10, 0 ) ),&lt;BR /&gt;,&lt;BR /&gt;Number Col Box( "Mean difference", meandiff)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;);&lt;BR /&gt;&lt;BR /&gt;tb &amp;lt;&amp;lt; Set Shade Headings( 0 ); // Turn off shaded table headings.&lt;BR /&gt;tb &amp;lt;&amp;lt; Set Heading Column Borders( 0 ); // Turn off table column borders.&lt;BR /&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How do you report the data from the bigger table?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 12:13:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813688#M99515</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-11-18T12:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813705#M99522</link>
      <description>&lt;P&gt;Welcome to the JMP Community.&lt;/P&gt;
&lt;P&gt;I think there is a mix up between the data table you attached and the script you attached.&amp;nbsp; The references in the script to the columns to be analyzed do not match the columns in the attached data table.&lt;/P&gt;
&lt;P&gt;If you can provide the correct attachments I am sure the Community will be able to assist you in your efforts.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 11:52:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813705#M99522</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-18T11:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813706#M99523</link>
      <description>&lt;P&gt;Dear Jim,&lt;/P&gt;&lt;P&gt;I apologize for the mix-up. Thank you for letting me know. I have attached the correct script now.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Julie&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 12:14:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813706#M99523</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-11-18T12:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813750#M99536</link>
      <description>&lt;P&gt;This may give you a leg up on getting your final product.&amp;nbsp; It produces&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1731940502918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70343i1D5E060824C863EB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1731940502918.png" alt="txnelson_0-1731940502918.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
sd = //Open( "test_table.jmp" );
Data Table( "test_table" );
Fitmod = Fit Model(
	Y( :"Test value"n ),
	Effects( :Person ),
	Random Effects( :Day[:Person] ),
	NoBounds( 0 ),
	Personality( "Standard Least Squares" ),
	Method( "REML" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:"Test value"n &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ), Scaled Estimates( 0 ),
		Plot Actual by Predicted( 1 ), Plot Regression( 0 ), Plot Residual by Predicted( 1 ), Plot Studentized Residuals( 0 ),
		Plot Effect Leverage( 1 ), Plot Residual by Normal Quantiles( 0 ), {:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}
	),
	Where( :ID == "A1" ),
	SendToReport(
		Dispatch( {"Test value ID=A1"}, "Whole Model", OutlineBox, {Close( 1 )} ),
		Dispatch( {"Test value ID=A1", "Person"}, "Leverage Plot", OutlineBox, {Close( 1 )} )
	)
);
Report( Fitmod )[Outline Box( 2 )] &amp;lt;&amp;lt; Close( 0 );
reportFitmod = Fitmod &amp;lt;&amp;lt; Report;
sumfit = reportFitmod[Outline Box( "Least Squares Means Table" )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix; 
// Get data from CrossTab table
crossTab = reportFitmod[Outline Box( "LSMeans Differences Student's t" )][CrosstabBox( 1 )] &amp;lt;&amp;lt; get as matrix;
// Get Where clause variable
whereCol = Word( 2, ((reportFitmod &amp;lt;&amp;lt; parent)[Text Box( 1 )]) &amp;lt;&amp;lt; get text, ":=)" );
whereVal = {};
Eval( Parse( "insert into(whereVal," || Word( 2, ((reportFitmod &amp;lt;&amp;lt; parent)[Text Box( 1 )]) &amp;lt;&amp;lt; get text, "=)" ) || ");" ) );
meandiff = Round( Abs( crossTab[1, 2] ), 4 );
lowerCL = Round( Abs( crossTab[3, 2] ), 3 );
upperCL = Round( Abs( crossTab[4, 2] ), 3 );
term = reportFitmod[Outline Box( "Least Squares Means Table" )][String Col Box( 1 )] &amp;lt;&amp;lt; Get();
est = reportFitmod[Outline Box( "Least Squares Means Table" )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix;
testValue = {};
Insert Into( testValue, (Substr( reportFitmod[Outline Box( 1 )] &amp;lt;&amp;lt; get title, 10 )) );
dif = {};
Insert Into( dif, Char( meandiff ) || " [" || Char( lowerCL ) || ";" || Char( upperCL ) || "]" );

dlg = New Window( "Custom Report",
	Outline Box( "Selected Values",
		Lineup Box( N Col( 2 ), Text Box( "Factor of Interest: " ), Text Box( sfactor ) ),
		Spacer Box( size( 0, 10 ) ),
		tb = Table Box(
			String Col Box( "Test Value", testvalue ),
			String Col Box( whereCol, whereVal ),
			Number Col Box( "Mean, " || term[1], sumfit[1] ),
			Number Col Box( "Mean, " || term[2], sumfit[2] ),
			String Col Box( "Difference in mean and CI", dif )
			
		)
	)

);
tb &amp;lt;&amp;lt; Set Shade Headings( 0 ); // Turn off shaded table headings.
tb &amp;lt;&amp;lt; Set Column Borders( 1 ); // Turn off table column borders.
tb &amp;lt;&amp;lt; Set row Borders( 1 );
tb &amp;lt;&amp;lt; border( 1 );

 

&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2024 14:36:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/813750#M99536</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-18T14:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/815718#M99605</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How should the script be altered if there are multiple IDs to generate a table with all the different elements? Can a loop be implemented for this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 08:07:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/815718#M99605</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-11-20T08:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/815788#M99607</link>
      <description>&lt;P&gt;I have modified the JSL to be able to handle multiple levels of ID.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1732101149794.png" style="width: 495px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70443i9A135E80BD7CCF27/image-dimensions/495x349?v=v2" width="495" height="349" role="button" title="txnelson_0-1732101149794.png" alt="txnelson_0-1732101149794.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
sd = //Open( "test_table.jmp" );
Data Table( "test_table " );
Fitmod = Fit Model(
	Y( :"Test value"n ),
	Effects( :Person ),
	Random Effects( :Day[:Person] ),
	NoBounds( 0 ),
	Personality( "Standard Least Squares" ),
	Method( "REML" ),
	Emphasis( "Effect Leverage" ),
	Run(
		:"Test value"n &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ),
		Scaled Estimates( 0 ), Plot Actual by Predicted( 1 ), Plot Regression( 0 ),
		Plot Residual by Predicted( 1 ), Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
		Plot Residual by Normal Quantiles( 0 ), {:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}
	),
	by( :ID ),
	SendToReport(
		Dispatch( {"Test value ID=A1"}, "Whole Model", OutlineBox, {Close( 1 )} ),
		Dispatch( {"Test value ID=A1", "Person"}, "Leverage Plot", OutlineBox, {Close( 1 )} )
	)
);

// Set the lists for the storage of the data from the by groups
whereVal = testValue = dif = sumfit1 = sumfit2 = {};

// Loop across each by group and gather the data
For Each( {rpt, group}, Fitmod, 
	// Point to the current report
	reportFitmod = Fitmod[group] &amp;lt;&amp;lt; Report;
	
	// Get the means for the 2 levels
	sumfit = reportFitmod[Outline Box( "Least Squares Means Table" )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix;
	Insert Into( sumfit1, sumfit[1] );
	Insert Into( sumfit2, sumfit[2] );
	term = reportFitmod[Outline Box( "Least Squares Means Table" )][String Col Box( 1 )] &amp;lt;&amp;lt; Get();
	
	// Get By Group column
	whereCol = Word( 1, (reportFitmod[Outline Box( 1 )] &amp;lt;&amp;lt; get title), "=)" );
	Insert Into( whereVal, Word( 2, (reportFitmod[Outline Box( 1 )] &amp;lt;&amp;lt; get title), "=)" ) );
		
	// Get data from CrossTab table
	crossTab = reportFitmod[Outline Box( "LSMeans Differences Student's t" )][CrosstabBox( 1 )] &amp;lt;&amp;lt;
	get as matrix;
	meandiff = Round( Abs( crossTab[1, 2] ), 4 );
	lowerCL = Round( Abs( crossTab[3, 2] ), 3 );
	upperCL = Round( Abs( crossTab[4, 2] ), 3 );
	
	// Get the Response variable name
	Insert Into( testValue, (Substr( (reportFitmod &amp;lt;&amp;lt; topparent)[Outline Box( 1 )] &amp;lt;&amp;lt; get title, 10 )) );

	// Create the Differeence in mean and CL string
	Insert Into( dif, Char( meandiff ) || " [" || Char( lowerCL ) || ";" || Char( upperCL ) || "]" );
);

// Create the table
dlg = New Window( "Custom Report",
	Outline Box( "Selected Values",
		Lineup Box( N Col( 2 ), Text Box( "Factor of Interest: " ), Text Box( term[1] ) ),
		Spacer Box( size( 0, 10 ) ),
		tb = Table Box(
			String Col Box( "Test Value", testvalue ),
			String Col Box( whereCol, whereVal ),
			Number Col Box( "Mean, " || term[1], sumfit1 ),
			Number Col Box( "Mean, " || term[2], sumfit2 ),
			String Col Box( "Difference in mean and CI", dif )
			
		)
	)

);
tb &amp;lt;&amp;lt; Set Shade Headings( 0 ); // Turn off shaded table headings.
tb &amp;lt;&amp;lt; Set Column Borders( 1 ); // Turn off table column borders.
tb &amp;lt;&amp;lt; Set row Borders( 1 );
tb &amp;lt;&amp;lt; border( 1 );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Your job now is to study the script, and learn what it does.&amp;nbsp; The script works for the sample data table and Fit Model you specified.&amp;nbsp; However, different data tables with different columns and different Fit Model executions may not work with the JSL that generates the report output.&amp;nbsp; You will need to become knowledgeable enough to modify the script to meet your needs.&lt;/P&gt;
&lt;P&gt;Good references for this is the Scripting Guide and the Scripting Index, available under the Help pull down menu in JMP.&lt;/P&gt;
&lt;P&gt;Of course, the JMP Discussion Community will be there to assist you with your learning of the script.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 11:26:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/815788#M99607</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-11-20T11:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/820659#M99938</link>
      <description>&lt;P&gt;Thank you for your impressive work!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried to run the script, but I get an error. I have tried to browse through old cases and google for both the function For Each and the error as well as trying to modify the script but to no avail. I have version 16, could this pose an issue to the script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My belief is the error stems from {rpt, group} as I have tried to remove all in the For Each and I still get this error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_0-1733328225343.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/70841iD9586F065EF495CC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_0-1733328225343.png" alt="Juli_0-1733328225343.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Most of it I can understand, but where do we get this rpt from and how is it used? It is only mentioned in the For Each( {rpt, group} ...) so I cannot rationalise how it fits.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 16:08:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/820659#M99938</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-12-04T16:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/820666#M99943</link>
      <description>&lt;P&gt;What version of JMP are you using?&amp;nbsp; For Each() was added to JMP in version 16.&amp;nbsp; The By() functionality in Fit Mod was not added until JMP 18.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The script will need to be modified to handle both of these changes.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 16:37:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/820666#M99943</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-12-04T16:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/822187#M100165</link>
      <description>&lt;P&gt;I use JMP version 16.1.0, so that must be the reason.&lt;/P&gt;&lt;P&gt;Does the FitMod function need to be replaced by another function or can FitMod still be used just differently?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Dec 2024 13:48:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/822187#M100165</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-12-12T13:48:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/822210#M100171</link>
      <description>&lt;P&gt;Here is a modified version of the script.&amp;nbsp; I have tested it in JMP 16.&amp;nbsp; I removed the By clause and replaced the functionality with a For Each() loop that runs the Fit Model for each level of ID separately.&amp;nbsp; The script then gathers the output from each of the separate Fit Model outputs and generates the final output display&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1734015772163.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71069i297C2E805E4ECDF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1734015772163.png" alt="txnelson_0-1734015772163.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
sd = //Open( "test_table.jmp" );
Data Table( "test_table" );
Fitmod = {};

// Determine the levels in the ID column
summarize( sd, ByGroups = By( :ID ) );

// Loop across each levle of ID 
For Each( {BG, group}, ByGroups,
	Fm = Fit Model(
		Y( :"Test value"n ),
		Effects( :Person ),
		Random Effects( :Day[:Person] ),
		NoBounds( 0 ),
		Personality( "Standard Least Squares" ),
		Method( "REML" ),
		Emphasis( "Effect Leverage" ),
		Run(
			:"Test value"n &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Scaled Estimates( 0 ), Plot Actual by Predicted( 1 ),
			Plot Regression( 0 ), Plot Residual by Predicted( 1 ),
			Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
			Plot Residual by Normal Quantiles( 0 ), {:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}
		),
		Where( :ID == ByGroups[group] ),
		SendToReport(
			Dispatch( {"Test value ID=A1"}, "Whole Model", OutlineBox, {Close( 1 )} ),
			Dispatch(
				{"Test value ID=A1", "Person"},
				"Leverage Plot",
				OutlineBox,
				{Close( 1 )}
			)
		)
	);

// Save the pointer to the results in the Fitmod list
	Insert Into( Fitmod, Fm );
);

// Set the lists for the storage of the data from the by groups
testValue = dif = sumfit1 = sumfit2 = {};

// Loop across each by group and gather the data
For Each( {rpt, group}, Fitmod, 
	// Point to the current report
	reportFitmod = Fitmod[group] &amp;lt;&amp;lt; Report;
	
	// Get the means for the 2 levels
	sumfit = reportFitmod[Outline Box( "Least Squares Means Table" )][Number Col Box( 1 )] &amp;lt;&amp;lt; Get as Matrix;
	Insert Into( sumfit1, sumfit[1] );
	Insert Into( sumfit2, sumfit[2] );
	term = reportFitmod[Outline Box( "Least Squares Means Table" )][String Col Box( 1 )] &amp;lt;&amp;lt; Get();
	
	// Get By Group column
	whereCol = Word( 2, ((reportFitmod &amp;lt;&amp;lt; parent)[Text Box( 1 )]) &amp;lt;&amp;lt; get text, ":=)" );
		
	// Get data from CrossTab table
	crossTab = reportFitmod[Outline Box( "LSMeans Differences Student's t" )][CrosstabBox( 1 )] &amp;lt;&amp;lt;
	get as matrix;
	meandiff = Round( Abs( crossTab[1, 2] ), 4 );
	lowerCL = Round( Abs( crossTab[3, 2] ), 3 );
	upperCL = Round( Abs( crossTab[4, 2] ), 3 );
	
	// Get the Response variable name
	Insert Into( testValue, (Substr( (reportFitmod &amp;lt;&amp;lt; topparent)[Outline Box( 1 )] &amp;lt;&amp;lt; get title, 10 )) );

	// Create the Differeence in mean and CL string
	Insert Into( dif, Char( meandiff ) || " [" || Char( lowerCL ) || ";" || Char( upperCL ) || "]" );
);

// Create the table
dlg = New Window( "Custom Report",
	Outline Box( "Selected Values",
		Lineup Box( N Col( 2 ), Text Box( "Factor of Interest: " ), Text Box( term[1] ) ),
		Spacer Box( size( 0, 10 ) ),
		tb = Table Box(
			String Col Box( "Test Value", testvalue ),
			String Col Box( whereCol, ByGroups ),
			Number Col Box( "Mean, " || term[1], sumfit1 ),
			Number Col Box( "Mean, " || term[2], sumfit2 ),
			String Col Box( "Difference in mean and CI", dif )
			
		)
	)

);
tb &amp;lt;&amp;lt; Set Shade Headings( 0 ); // Turn off shaded table headings.
tb &amp;lt;&amp;lt; Set Column Borders( 1 ); // Turn off table column borders.
tb &amp;lt;&amp;lt; Set row Borders( 1 );
tb &amp;lt;&amp;lt; border( 1 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 12 Dec 2024 15:04:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/822210#M100171</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-12-12T15:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/825494#M100577</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 14:47:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/825494#M100577</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2024-12-30T14:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826304#M100719</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have an additional question. If I want to run the analysis with many test values, would I be able to either:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Make a loop with FitModel and then continue as in the script above?&lt;/P&gt;&lt;P&gt;2. Do the analysis separately where I get the report in one report, and then run a script which saves the data like the script above?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or is there another way that I should try to look into?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 09:54:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826304#M100719</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2025-01-08T09:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826323#M100724</link>
      <description>&lt;P&gt;Julie,&lt;/P&gt;
&lt;P&gt;Either approach would probably work.&lt;/P&gt;
&lt;P&gt;Making this decision seems to me to be an awfully big decision to make at the beginning.&amp;nbsp; I would first come up with what you want the final product to look like, and then take the script, and modify it to give you that result on just 2 test values.&amp;nbsp; That will give you both a little more information on what the approach should be, and also expose what areas in JSL that you need to learn more about, in order to expand the script to your final product.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 11:04:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826323#M100724</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-01-08T11:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826344#M100726</link>
      <description>&lt;P&gt;Hi Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great to know that both approaches are possible to do in JSL.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be possible to alter the code to also have&amp;nbsp;Y( :"Test value"n ) to go through all the continuous columns?&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;// Determine the levels in the ID column
summarize( sd, ByGroups = By( :ID ) );

// Loop across each level of ID 
For Each( {BG, group}, ByGroups,
	Fm = Fit Model(
		Y( :"Test value"n ),
		Effects( :Person ),
		Random Effects( :Day[:Person] ),
		NoBounds( 0 ),
		Personality( "Standard Least Squares" ),
		Method( "REML" ),
		Emphasis( "Effect Leverage" ),
		Run(
			:"Test value"n &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
			Parameter Estimates( 1 ), Scaled Estimates( 0 ), Plot Actual by Predicted( 1 ),
			Plot Regression( 0 ), Plot Residual by Predicted( 1 ),
			Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
			Plot Residual by Normal Quantiles( 0 ), {:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}
		),
		Where( :ID == ByGroups[group] ),
		SendToReport(
			Dispatch( {"Test value ID=A1"}, "Whole Model", OutlineBox, {Close( 1 )} ),
			Dispatch(
				{"Test value ID=A1", "Person"},
				"Leverage Plot",
				OutlineBox,
				{Close( 1 )}
			)
		)
	);

// Save the pointer to the results in the Fitmod list
	Insert Into( Fitmod, Fm );
);&lt;/PRE&gt;&lt;P&gt;I have looked at many other loops and tried to&amp;nbsp;alter it to the following:&lt;/P&gt;&lt;PRE&gt;Names Default To Here( 1 );
sd = Open( "test_table_002.jmp" );
Data Table( "test_table_002" );
Fitmod = {};

// Determine the levels in the ID column
summarize( sd, ByGroups = By( :ID ) );
colList = sd &amp;lt;&amp;lt; Get Column Names( Continuous, String );

// Loop across each level of ID 
For Each( i = 1, i &amp;lt;= Nitems( colList ), i++,
	For Each( {BG, group}, ByGroups,
		Fm = Fit Model(
			Y( colList ),
			Effects( :Person ),
			Random Effects( :Day[:Person] ),
			NoBounds( 0 ),
			Personality( "Standard Least Squares" ),
			Method( "REML" ),
			Emphasis( "Effect Leverage" ),
			Run(
				colList &amp;lt;&amp;lt; {Summary of Fit( 1 ), Analysis of Variance( 0 ),
				Parameter Estimates( 1 ), Scaled Estimates( 0 ), Plot Actual by Predicted( 1 ),
				Plot Regression( 0 ), Plot Residual by Predicted( 1 ),
				Plot Studentized Residuals( 0 ), Plot Effect Leverage( 1 ),
				Plot Residual by Normal Quantiles( 0 ), {:Person &amp;lt;&amp;lt; {LSMeans Student's t( 0.05 )}}}
			),
			Where( :ID == ByGroups[group] ),
			SendToReport(
				Dispatch( {"Test value ID=A1"}, "Whole Model", OutlineBox, {Close( 1 )} ),
				Dispatch(
					{"Test value ID=A1", "Person"},
					"Leverage Plot",
					OutlineBox,
					{Close( 1 )}
				)
			)
		);

	// Save the pointer to the results in the Fitmod list
		Insert Into( Fitmod, Fm );
	);
);&lt;/PRE&gt;&lt;P&gt;However, I get an error code that I do not fully understand.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached a test table and I double checked that I attached the correct one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 13:06:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826344#M100726</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2025-01-08T13:06:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826355#M100728</link>
      <description>&lt;P&gt;What is the error message?&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 14:58:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826355#M100728</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-01-08T14:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826379#M100737</link>
      <description>&lt;P&gt;Here is the error message:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_0-1736405390225.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71755iFD785739779DA441/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Juli_0-1736405390225.png" alt="Juli_0-1736405390225.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only have 43 lines in the script for now&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 06:50:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826379#M100737</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2025-01-09T06:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826385#M100741</link>
      <description>&lt;P&gt;You script modification is very close to working.&amp;nbsp; In Line 11 you are specifying&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For Each( i = 1, i &amp;lt;= Nitems( colList ), i++,&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It should be&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( i = 1, i &amp;lt;= Nitems( colList ), i++,&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;There is a big difference between the function For Each() and For(). Definition and Examples of the 2 different functions can be found in the Scripting Index.&lt;/P&gt;
&lt;P&gt;You will also need to change your references to&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;colList&amp;nbsp;&lt;/P&gt;
&lt;P&gt;in lines 15 and 23 to specify which of the items in colList you are referencing.&lt;/P&gt;
&lt;P&gt;Since you are using the variable "i" as your looking index value, you will need to specify&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;colList[i]&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;In the sample data table you provided, you only have the column Test Value as your numeric(continous)&amp;nbsp; columns, so you will only loop once with your For() function.&amp;nbsp; However, if you add more numeric(continuous) columns you code with the modifications to the syntax I have mentioned will run for each of the numeric(continuous) column&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 11:38:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826385#M100741</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-01-09T11:38:23Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826413#M100744</link>
      <description>&lt;P&gt;Thank you. That makes a lot of sense!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One final question, if I want to alter the text in the Dispatch that is sent to the report - how would this be done?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;It is currently "Test value ID=A1" and what is printed is fx Test value 1 or Test value 2. When I tried to change to "Test value ID=colList", the same was printed so I do not understand how it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like it to print the following text for fx test value 1 with ID A1: "Test value 1, ID=A1". I have tried with different strings and functions but either I get an error or it just prints the same as previously.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 14:10:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826413#M100744</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2025-01-09T14:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826506#M100754</link>
      <description>&lt;P&gt;I am not understanding what you are saying.&amp;nbsp; I will approach it from a different direction.&amp;nbsp; Here is the output from your data table for column Test Value 1&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1736455242002.png" style="width: 901px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71766i5058BBA354E0CBFC/image-dimensions/901x750?v=v2" width="901" height="750" role="button" title="txnelson_0-1736455242002.png" alt="txnelson_0-1736455242002.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;what do you want to change from this output?&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 20:41:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826506#M100754</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2025-01-09T20:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Reporting of data from LSMeans Differences Student's t</title>
      <link>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826576#M100764</link>
      <description>&lt;P&gt;Dear Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have written it to the picture where I want it changed and to what:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Juli_0-1736497805280.png" style="width: 915px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/71787i143163556D756CF3/image-dimensions/915x753?v=v2" width="915" height="753" role="button" title="Juli_0-1736497805280.png" alt="Juli_0-1736497805280.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If it does not specify the ID, then I do not know how to differentiate between the different windows that pop up when there are multiple IDs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this makes more sense :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Julie&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 08:32:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Reporting-of-data-from-LSMeans-Differences-Student-s-t/m-p/826576#M100764</guid>
      <dc:creator>Juli</dc:creator>
      <dc:date>2025-01-10T08:32:02Z</dc:date>
    </item>
  </channel>
</rss>

