JMP 18.1.2 Extract RSquare Values From Fit Y by X Analysis
Running Analyze > Fit Y by X. I have the code below which opens a data table but there are no RSquare values in the table. Any ideas on what I'm missing?
// Open Data Table
dt = Data Table( "Raw Data" );
// Run Fit Y by X Analysis with a By Variable
fitObj = dt << Fit Y by X( Y( :"Mean(VALUEABS)" ), X( :Mean ), By( :PARM_LABEL ) );
// Get the analysis report
rpt = fitObj << Get Report;
// Find
...