Nonlinear regression using vba automation
Hello, I currently have a working JMP script which automatically fits my raw data using a predictor formula fit1 = Nonlinear(
Y( :Name( "-60" ) ),
X( :Formula ),
Iteration Limit( 100 ),
Newton,
Finish
);
fit1 << Prediction Formula;
fit1 << Close Window; I am now trying to automate this side of things from Excel using VBA. Is it possible to automatically run this non linear regression using vba and paste ...
dale_lehman