cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
learning_JSL
Level IV

trying to use JSL to save prediction results to a new column based on a model fit

Hi all - I am trying to save prediction results to a new column in my data table based on a model regression fit.  I have tried numerous configurations and the JSL debugger but the results do not end up in the newly created column.   I think I am missing something simple.  Thanks in advance for any assistance.

 

Here is my script:

 

dt = Open( "C:\ fit model100621.jmp" );
New Column( "New Predicted", Numeric, "Continuous", Format( "Best", 12 ) );
Fit Model(
    Y( :BACT ),
    Effects( :VAR1, VAR2, :VAR3 ),
    Personality( "Standard Least Squares" ),
    Emphasis( "Effect Leverage" ),
    Run
);
obj << Prediction Results;

Close( dt, save( "C:\ RESULTS of fit model100321.jmp" ) );

 

1 ACCEPTED SOLUTION

Accepted Solutions
learning_JSL
Level IV

Re: trying to use JSL to save prediction results to a new column based on a model fit

I'm just beginning to learn JSL.  I needed to add text (Obj =) in front of Fit Model for it to recognize the model and results. 

 

So...I'm all set.   Thanks all.

View solution in original post

1 REPLY 1
learning_JSL
Level IV

Re: trying to use JSL to save prediction results to a new column based on a model fit

I'm just beginning to learn JSL.  I needed to add text (Obj =) in front of Fit Model for it to recognize the model and results. 

 

So...I'm all set.   Thanks all.

Recommended Articles