I am running an OLS regression, I would like to use the predicted value of my dependent variable as a new variable.(I have to use the predicted variable in another regression)
Most, if not all regression procedure accept statement OUTPUT for creating a new dataset with predicted values and residuals. Thus if you add a statement like
OUTPUT out=myPredData predicted=myPred;
you will get a new dataset named myPredData similar to your input dataset but with an extra column named myPred which you can use as input to another regression.
Most, if not all regression procedure accept statement OUTPUT for creating a new dataset with predicted values and residuals. Thus if you add a statement like
OUTPUT out=myPredData predicted=myPred;
you will get a new dataset named myPredData similar to your input dataset but with an extra column named myPred which you can use as input to another regression.
PG
PG
The 2025 SAS Hackathon has begun!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.