Hi, I wanted to apply quantile regression equation on my dataset. Below is the function:
How can I apply these equations on my variables (age, weight, height and Z5)?
Appreciated.
When you say "how can I apply these equations", do you mean how do you obtain the estimates?
Or do you mean how do you use the estimates to predict new data?
Both questions are addressed in the article "How to score and graph a quantile regression model in SAS."
The model is
MODEL Z5 = Age Weight Height / quantile = 0.05 0.5 0.95;
You can use the missing value trick to score (predict) the model on new data.
I don't understand why you do not have estimates for the Weight variable in your chart. If that is really what your table looks like, please show us the code you used to obtain those estimates.
Take a look at the discussion and examples in the PROC QUANTREG documentation.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.