cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Stokes
Level IV

How to export RSquare from Bivariate Fit table use JSL and JMP

Hi, I am trying to export the Bivariate Fit summary table using below jsl,

however, it doesn't include the RSquare value, only the linear fit equations.

Can someone help how to extract the RSquare data?
Thanks

 

rbiv = biv[1] << Report;
Rt1 = rbiv["Parameter Estimates"][Table Box( 1 )] << Make Combined Data Table;

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: How to export RSquare from Bivariate Fit table use JSL and JMP

The R2 statistics are not in the Parameter Estimates paragraph that you are pointing at.  

rbiv = biv[1] << Report;
Rt1 = rbiv["Parameter Estimates"][Table Box( 1 )] << Make Combined Data Table;

They are in the Summary of Fit paragraph and what you need to do is to apply the Make Combined Data Table message to the table box in that paragraph

rbiv = biv[1] << Report;
Rt1 = rbiv["Summary of Fit"][Table Box( 1 )] << Make Combined Data Table;
Jim

View solution in original post

2 REPLIES 2
txnelson
Super User

Re: How to export RSquare from Bivariate Fit table use JSL and JMP

The R2 statistics are not in the Parameter Estimates paragraph that you are pointing at.  

rbiv = biv[1] << Report;
Rt1 = rbiv["Parameter Estimates"][Table Box( 1 )] << Make Combined Data Table;

They are in the Summary of Fit paragraph and what you need to do is to apply the Make Combined Data Table message to the table box in that paragraph

rbiv = biv[1] << Report;
Rt1 = rbiv["Summary of Fit"][Table Box( 1 )] << Make Combined Data Table;
Jim
Stokes
Level IV

Re: How to export RSquare from Bivariate Fit table use JSL and JMP

Great, thanks for the help.