BookmarkSubscribeRSS Feed
Prest
Fluorite | Level 6

Hello again, I have another question.

 

I am using SAS 9.4. I run a  regression procedure using proc surveyreg and output residuals and predicted values which I was interested in. Now I want to obtain a predicted value of my dependent variable at a specific value of my independent variable. I thought about running regression again this time using the predicted values as my dependent valuable and use the intercept and slope from the table to manually calculate it but I am not sure this works. I used proc gplot to plot predicted values vs independent variable but could not obtain regression equation. What is the best way of doing this?

 

proc surveyreg data=Project1.DII_Q;
strata kstrata;
cluster psu;
weight pooled_wt;
model DII = N_EN;
output out=Project1.DII_Adj predicted=DII_pred residual = DII_resid;
run;

 

proc gplot data=Project1.DII_Adj ;
plot DII_pred* N_EN/regeqn;
run;

1 REPLY 1
Prest
Fluorite | Level 6

Hello again, I have another question.

 

I am using SAS 9.4. I run a  regression procedure using proc surveyreg and output residuals and predicted values which I was interested in. Now I want to obtain a predicted value of my dependent variable at a specific value of my independent variable. I thought about running regression again this time using the predicted values as my dependent valuable and use the intercept and slope from the table to manually calculate it but I am not sure this works. I used proc gplot to plot predicted values vs independent variable but could not obtain regression equation. What is the best way of doing this?

 

proc surveyreg data=Project1.DII_Q;
strata kstrata;
cluster psu;
weight pooled_wt;
model DII = N_EN;
output out=Project1.DII_Adj predicted=DII_pred residual = DII_resid;
run;

 

proc gplot data=Project1.DII_Adj ;
plot DII_pred* N_EN/regeqn;
run;

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 472 views
  • 0 likes
  • 1 in conversation