Hi,
I use the following code to regress var1 on var2 and var3, and then output the intercepts to model1 dataset.
proc reg data=have outest=model1 (keep=intercept); model var1=var2 var3; run;
My question is that if I could adjust this code so that model1 includes the intercept as well as its corresponding standard error and/or p-value and the number of observations used for estimation.
Thanks.
Sure. Use the TABLEOUT option on the P{ROC REG statement:
proc reg data=sashelp.class outest=model1 tableout plots=none;
model weight=height age;
quit;
proc print; run;
Use ODS OUTPUT to capture the output tables:
proc reg data=sashelp.class plots=none;
model weight = age height;
ods output parameterEstimates=pe Nobs=nobs;
run;
data stats;
set pe(where=(Variable="Intercept"));
set nobs(where=(Label="Number of Observations Used"));
run;
Thanks.
Sure. Use the TABLEOUT option on the P{ROC REG statement:
proc reg data=sashelp.class outest=model1 tableout plots=none;
model weight=height age;
quit;
proc print; run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.