Quantcast
Viewing all articles
Browse latest Browse all 310

Residual analysis Leverage and Influence

Running a multiple linear regression I would like to analyse influence and leverage but a lot of the otherwise useful plots provided by SAS

Code:

ods trace on;
ods graphics on;
proc reg data=tmp1 plots=all;
model adm = trans marg;
run;
quit;
ods trace off;
ods graphics off;

comes without any observation ID. So I'm wondering if there is any way to add observation ID's?

Viewing all articles
Browse latest Browse all 310

Trending Articles