I have a task of making a quantile regression (5%, 50% and 95%) for tomorrow's power production. However, I am trying to grasp which quantiles we are talking about. Wikipedia (and similar sites) states that
Whereas the method of least squares estimates the conditional mean of the response variable across values of the predictor variables, quantile regression estimates the conditional median (or other quantiles) of the response variable
This definition only makes sense in the context of a fixed response variable. But my customer doesn't care which input features I use for my model:
- If I have no input features available, my best guess is probably to try and predict the unconditional quantiles of my target $Y$, fx using the sample quantiles.
- If I have an input feature set $X$, I could try and predict the conditional quantiles for $Y|X=x$, fx using linear quantile regression.
- If I had another input feature set $Z$, I could do the above for this instead.
All models above seem valid, but they try to predict different things (quantiles for $Y$, $Y|X=x$, $Y|Z=z$, etc.) So how am I to understand the "quantiles" referered to in quantile regression?