Questions tagged [quantile-regression]

Quantile regression allows us to estimate the effect of a set of predictor variables over the entire distribution of the outcome variable or any particular quantile.

Most standard regression techniques focus on estimating how the conditional expectation of an outcome variable ($Y$) depends on a set of predictor variables ($X$). Quantile regression goes beyond mean effects, to estimate the impact of $X$ on any quantile or quantiles of $Y$. This enables researchers to assess many interesting questions like: what is the effect of smoking on infants with the lowest birth weight? How does a job market training program affect those at the bottom of the ability distribution? Or does smaller class size benefit the stronger or weaker students more?

399 questions
46
votes
1 answer

What is the difference between conditional and unconditional quantile regression?

The conditional quantile regression estimator by Koenker and Basset (1978) for the $\tau^{th}$ quantile is defined as $$ \widehat{\beta}_{QR} = \min_{b} \sum^{n}_{i=1} \rho_\tau (y_i - X'_i b_\tau) $$ where $\rho_\tau = u_i\cdot (\tau - 1(u_i<0))$…
AlexH
  • 966
6
votes
1 answer

Similarity LAD and quantile regression

With Least Absolute Deviations (LAD) regression coefficients are estimated through minimization of the sum of the absolute values of the residuals. Quantile regression aims at estimating either the conditional median or other quantiles of the…
6
votes
2 answers

Presenting the error term in a quantile regression specification

Let $Y_i$ be the response and $X_i$ be the independent variables. Whenever I've seen a quantile regression specification they'll go: $Q_{\tau}(Y_i | X_i) = a(\tau) + b(\tau) X_i$ Or, alternatively: $Q_{Y_i}(\tau|X_i) = a(\tau) + b(\tau) X_i$ where…
user13253
5
votes
1 answer

Quantile Regression - Interpretation of a significant quantile

I want to perform a quantile regression on two continuous variables; Y (DV) and X (IV). I want to find out if there is an significant association between Y and X. When doing this in R like: fit2 <- rq(Y ~ X,tau=c(.05, .25, .5, .75, .95)) If say, the…
eXpander
  • 564
4
votes
1 answer

How to perform quantile regression in a more elegant fashion?

https://www.r-bloggers.com/2019/01/quantile-regression-in-r-2/ I see the above method. The regression result is a straight line. But the quantile of the real data may not be on a straight line. The following is a made-up example. R> x=seq(from=.5,…
3
votes
1 answer

Quantile regression with one predictor

Is there any closed formula for quantile regression with only one predictor? Motivation I need to implement in SQL median regression with one predictor. It is quite easy to implement OLS with one predictor, because there is simple formulat for…
3
votes
0 answers

Unconditional Quantile Regressions – interpretation

I'm using the contributions by Firpo et al. (2009) for my research on determinants of inequality and particularly the effects of cash transfers on income inequality. With a continuous covariate the interpretation of the coefficient is the…
3
votes
2 answers

Is performing a quantile regression different than using slope interaction dummies?

Just becoming introduced to the concept of quantile regression. It seems rather useful, but I'm not sure if I completely understand the concept yet. Does a quantreg essentially set slope interaction dummies for .25, .5, .75, .1 or whatever chosen…
3
votes
1 answer

Interpreting quantile regression estimates

I am reading the paper of Roger Koenker about Quantile Regression. Specifically in Figure 4, I can see that at the lower quantiles, the effect of Mother's Age is strongest than at other higher quantiles, such as at the .1 quantile, 1 years old…
3
votes
2 answers

Model interpretation resulted by quantile regression

I am very new to using the quantile regression (since I deal with heteroskedasticity). In my case, I estimate a quantile regression on three quantiles namely 0.10, 0.50 and 0.90 to model the effect of some explanatory variables (years of schooling,…
2
votes
2 answers

Confidence Bands for Quantile Regression

Can anyone suggest a way to construct confidence bands on a particular quantile regression line? I am working with the quantreg package in R.
Thomas
  • 1,071
2
votes
0 answers

what's the difference between unconditional quantile and generalized quantile regression?

what's the difference between unconditional quantile and generalized quantile regression(Powell,2016)?
justo
  • 21
2
votes
0 answers

A question in proof from "Regression Quantiles" by Roger Koenker and Gilbert Bassett(Econometrica, 1978)

I have a problem in verifying the conclusion (3.5) in proving Theorem 3.3 as attached here. Particularly, from (3.4) \begin{align} 0&<\sum_{k=1}^{K}[(1/2-\theta)v_{k}+|v_{k}|]\\ &+\sum_{t\in\overline{h}}[1/2-1/2…
Jie Wei
  • 427
1
vote
1 answer

Why "we would be way too confident" while the confidence interval is too small

I read about quantile regression and was confused about one sentence: "We would be way too confident" about confidence interval in this post (under the second figure): here. I think that the confidence interval here is too small, so why does the…
Maryam
  • 1,620
1
vote
0 answers

Do values of predicted percentiles never decrease for higher percentiles in quantile regression?

I would like to please ask for your help concerning the following issue. After consecutively running two separate quantile regressions for percentiles $p_i$ and $p_j$ with $j>i$ [e.g., for the first percentile, $p_1$, and the second percentile,…
1
2 3