Solved – Quantile regression: Which standard errors

estimatorsquantile regressionrstandard error

The summary.rq function from the quantreg vignette provides a multitude of choices for standard error estimates of quantile regression coefficients. What are the special scenarios where each of these becomes optimal/desirable?

  • "rank" which produces confidence intervals for the estimated parameters by inverting a rank test as described in Koenker (1994). The default option assumes that the errors are iid, while the option iid = FALSE implements the proposal of Koenker Machado (1999). See the documentation for rq.fit.br for additional arguments.

  • "iid" which presumes that the errors are iid and computes an estimate of the asymptotic covariance matrix as in KB(1978).

  • "nid" which presumes local (in tau) linearity (in x) of the the conditional quantile functions and computes a Huber sandwich estimate using a local estimate of the sparsity.

  • "ker" which uses a kernel estimate of the sandwich as proposed by Powell(1990).

  • "boot" which implements one of several possible bootstrapping alternatives for estimating standard errors.

I have read at least 20 empirical papers where this is applied either in the time-series or the cross-sectional dimension and haven't seen a mention of standard error choice.

Best Answer

Did you go through the paper Koenker and Hallock(2000): Quantile Regression: An Introduction (econ.uiuc.edu/~roger/research/intro/rq.pdf)? Bootstrap is preferable because it makes no assumption about the distribution of response (p. 47, Quantile regressions, Hao and Naiman, 2007). Also, note that the "...assumptions for the asymptotic procedure usually do not hold, and even if these assumptions are satisfied, it is complicated to solve for the standard error of the constructed scale and skewness shifts (p. 43)..."

Related Question