Reputation: 2614
My question is very simple, is there a way to display sample size in PROC REG output in SAS? I've been googling to no avail.
Upvotes: 0
Views: 331
Reputation: 2614
This is what worked for me:
proc reg data=data;
model y=x;
ods select parameterestimates nobs; *can add whatever other tables you are interested in;
run;
Here is a list of tables for PROC REG: http://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_reg_sect051.htm
Upvotes: 0