BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
luciacossaro
Obsidian | Level 7

Hi, 

 

I post this question because i didn't find the answer in internet.

I did a multiple linear regression and i would want to show the regression line and observated valus fit, but i don't know how to do this for multiple variables.

 

I tried this but i have error messages .

 

proc reg data=house_decile lineprinter outest=residus_decile plots=fitplot ; 
model price = (lotsize bedrooms bathrms) ;
output out=prevres p=prev r=res ;
run ;

Somebody knows how is the correct syntax ?

 

Thanks you very much !

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

With multiple regression, you can't really display the fitted line, in your case it would need 4 dimensions (three for X and one for Y). You can (and should) plot the residuals against each predictor variable.

 

There is also the PARTIAL option of the MODEL statement, which produces partial regression leverage plots, which are useful, but should not be interpreted as the plot of the fitted regression line.

--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

With multiple regression, you can't really display the fitted line, in your case it would need 4 dimensions (three for X and one for Y). You can (and should) plot the residuals against each predictor variable.

 

There is also the PARTIAL option of the MODEL statement, which produces partial regression leverage plots, which are useful, but should not be interpreted as the plot of the fitted regression line.

--
Paige Miller

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1353 views
  • 1 like
  • 2 in conversation