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. 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.
Regardless, you can add your own F Ratio column to the table box. Below is a simple example of how to do that
Here is the simple script that added the F Ratio
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
biv = dt << 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 )] << 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 )] <<
append( Number Col Box( "F Ratio", theTs ) );
Jim