BookmarkSubscribeRSS Feed
cwc9
Calcite | Level 5

I am running a median regression and a few of my independent variables such as severity of stroke is categorized into 5 categories. When I run proc quantreg, I do not get medians, IQR, number of observations for each separate subgroup(severity of stroke as none/minor/moder....). I would like to report this as there are missing values in my data set due to its retrospective nature, so I need to get information specific to the model. The question I am trying to answer is looking at a measure of stroke severity at discharge and how that depends on admission severity of stroke and other variables like age and so on. I am wondering how to get this data. My current code is below. Btw this is my first time using SAS 9.4.

 

proc quantreg data=filtereddata ci=resampling;
class corticalinvolvement sex alcohol age_cat admission_nihss_score;
model last_nihss_score = age_cat sex alcohol prophylaxis admission_nihss_score infarctsize corticalinvolvement / quantile = .5;
estimate 'Diff in Medians' sex 1 -1 / CL;
run;

 

Thank you for any insight!

1 REPLY 1
Rick_SAS
SAS Super FREQ

It's not clear to me whether you want the univariate statistics (median, IQR,...) or whether you are asking for the dependent variable of the quantile regression.

 

If you want the univariate statistics, use PROC UNIVARIATE. You can use the BY statement if you want information for subgroups.

 

For the quantile regression, you can get a predicted (conditional) median for each value of the explanatory variables. Similarly, you can look at the 25th and 75th predicted quantiles to get a conditional IQR for each value of the explanatory variables. The value of the median and IQR depend on the value for the explanatory variables.

 

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 877 views
  • 0 likes
  • 2 in conversation