Quantile Regression Model – Assumptions to Consider for Application

assumptionsmultiple regressionquantile regressionregressiontime series

The question has been asked (one time) on CV before, but the answer is really imprecise and does not really answer the question in my opinion.

So: What are the assumptions for estimating a linear regression model via quantile regression?

To my understanding (and as several CV users have mentioned), quantile regression does not assume any specific distribution of the error terms – does that mean that, in a time series model, autocorrelation and heteroscedasticity do not have to be accounted for?

What about the other Gauss-Markov assumptions? I would assume that the assumption of no perfect multicollinearity has to be met when applying quantile regression, but do the parameters have to be linear? The linearity assumption only has to hold for the specific quantile I would assume.

Anyways – I do not find any backup for any of my thoughts in the scientific literature and I would appreciate a comprehensive answer. Thank you!

Best Answer

Quantile regression assumes

  • the normal regression assumptions of linearity and additivity (unless you add more terms to the model)
  • independence of observations
  • very large sample size, as quantile regression is not very efficient
  • $Y$ is very continuous; quantile regression doesn't work well when there are many ties at one or more values of $Y$

You might also consider semiparametric regression (e.g., proportional odds or hazards models) which are more efficient and also allow you to estimate the mean.

My RMS course notes goes a bit more into quantile and semiparametric regression in the chapter on ordinal models for continuous $Y$.

Related Question