简体   繁体   English

JSL中的学生化残差

[英]Studentized residuals in JSL

How can I add studentized residuals to an already fitted model I have in the JMP table? 如何将学生化残差添加到JMP表中已有的拟合模型中? 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. 现在,可以在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. 如果您有多个表,则可能要考虑使用循环将上面的代码片段作为循环的主体来保存学生化列。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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