Running a multiple linear regression I would like to analyse influence and leverage but a lot of the otherwise useful plots provided by SAS
comes without any observation ID. So I'm wondering if there is any way to add observation ID's?
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;