<?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 Display regression estimates' F-ratios? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267218#M52024</link>
    <description>&lt;P&gt;Is there an option to display the F-ratio (square of the t-ratios) in the regression display of the *individual* estimates in Fit Least Squares? I know JMP displays the overall model F-stat, but I'm looking for the F-ratios for each independent variable alone.&lt;/P&gt;</description>
    <pubDate>Sat, 16 May 2020 17:45:15 GMT</pubDate>
    <dc:creator>MAS</dc:creator>
    <dc:date>2020-05-16T17:45:15Z</dc:date>
    <item>
      <title>Display regression estimates' F-ratios?</title>
      <link>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267218#M52024</link>
      <description>&lt;P&gt;Is there an option to display the F-ratio (square of the t-ratios) in the regression display of the *individual* estimates in Fit Least Squares? I know JMP displays the overall model F-stat, but I'm looking for the F-ratios for each independent variable alone.&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 17:45:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267218#M52024</guid>
      <dc:creator>MAS</dc:creator>
      <dc:date>2020-05-16T17:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display regression estimates' F-ratios?</title>
      <link>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267230#M52025</link>
      <description>&lt;P&gt;In the Parameter estimates output from the Bivariate Platform, there is not a column that is available to be displayed that will show the F Ratio.&amp;nbsp; If you are using a different platform you can right click on the table box in question, select Columns and see if an F Ratio column is available to be displayed.&lt;/P&gt;
&lt;P&gt;Regardless, you can add your own F Ratio column to the table box.&amp;nbsp; Below is a simple example of how to do that&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fratio.PNG" style="width: 403px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24038i536E01BFCC44FCA6/image-size/large?v=v2&amp;amp;px=999" role="button" title="fratio.PNG" alt="fratio.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Here is the simple script that added the F Ratio&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	Fit Line( {Line Color( "Medium Dark Red" )} )
);

// Get the t ratios
theTs = Report( biv )["Parameter Estimates"][Number Col Box( 3 )] &amp;lt;&amp;lt; get;

// Convert them to F Ratio values
theTs[1] = theTs[1] ^ 2;
theTs[2] = theTs[2] ^ 2;

// Append them to the output Table Box
theTs = Report( biv )["Parameter Estimates"][Table Box( 1 )] &amp;lt;&amp;lt;
append( Number Col Box( "F Ratio", theTs ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 May 2020 18:41:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267230#M52025</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-05-16T18:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display regression estimates' F-ratios?</title>
      <link>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267267#M52030</link>
      <description>&lt;P&gt;I may be a bit confused, but&lt;SPAN&gt;&amp;nbsp; the F-ratios are displayed in Analysis of Variance (which provides the whole model statistics) and in the Effects Tests&amp;nbsp;outputs of the Fit Model platform. &amp;nbsp;It sounds like you want the Effects Tests which decompose the model DF's into each DF. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 22:57:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267267#M52030</guid>
      <dc:creator>statman</dc:creator>
      <dc:date>2020-05-16T22:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Display regression estimates' F-ratios?</title>
      <link>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267270#M52031</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4192"&gt;@MAS&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;if you are using the fit model platform with a continuous dependent variable you can get make use of the Effect tests table. This gives an F tests for each effect. for continuous variables this is identical to the t test. the same for nominal or ordinal variables with only two categories. form more than two category variable this F tests is a bit different than the individual parameter estimates.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ron_horne_0-1589669967456.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/24039i573C47D979926F9E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ron_horne_0-1589669967456.png" alt="ron_horne_0-1589669967456.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 May 2020 23:01:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-regression-estimates-F-ratios/m-p/267270#M52031</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2020-05-16T23:01:52Z</dc:date>
    </item>
  </channel>
</rss>

