How to save predicted values into matrix or list without saving into existing data table
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Bivariate( Y( :Weight ), X( :Height ) )<<Group by(:sex);;
obj<<Fit spline(0.1, Standardized,{Save Predicteds});tried lis below , it won't work.val_predict_ls=obj<<Save Predicteds.