简体   繁体   中英

Studentized residuals in JSL

How can I add studentized residuals to an already fitted model I have in the JMP table? I have several tables for which I manually open the particular script and do Save Columns--> Studentized Residuals. Any help will be appreciated. Thank you

Write the model to an object. Like:

obj_model = Fit Model(
                   Y()
                   X() etc...
             );

Now all functionalities of the model can be executed on the obj_model. So studentized residuals can be called as:

obj_model << Studentized Residuals;

In case you have multiple tables, you may want to consider using a loop to save the studentized columns, using the snippet above as the body of the loop.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM