@gzmorgan0 One more question, I have already fitted scripts that have Fit groups, not fit models. How can I add studentized residuals for them to the data table? My approach: try adding all fit models in the fit group to a list and pass that list to add residuals. The script does not work for now, but is this the correct way ahead? Also, if possible can you point me out to where I am going wrong in this script?
dt = Current Data Table();
ft = dt << Run Script( "Outlier Analysis" );
ftList = Substitute( ftList, Expr( FitGroup() ), Expr( {} ) );
Print( Head( ftList ) );
//For(i=1, i<=NItems(ftList),i++,
//ftList[i] << Studentized Residuals;
//);
;