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
Asked
Active
Viewed 167 times
1 Answers
0
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.

Syamanthaka
- 1,227
- 2
- 15
- 23
-
the thing is I have a fit group with a lot of fit models, and I realized that studentized residuals are functions for fit models and not for fit group. Any workaround? – PowerToYou May 02 '18 at 15:38
-
could you post some code of what you have done so far? – Syamanthaka May 03 '18 at 06:11