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 !