Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将学生化残差添加到 JMP 表中已拟合的模型中?我有几个表,我手动打开特定脚本并保存列-> 学生化残差。任何帮助将不胜感激。谢谢
将模型写入对象。喜欢:
obj_model = Fit Model( Y() X() etc... );
现在模型的所有功能都可以在 obj_model 上执行。所以学生化残差可以称为:
obj_model << Studentized Residuals;
如果您有多个表,您可能需要考虑使用循环来保存学生化列,使用上面的代码段作为循环的主体。