I have noticed that whenever I try to plot the coefficient graphs with their confidence intervals (CI) with the normal OLS coefficients and their CI, I get an error whenever I force the regression through the origin.
So if I use this code (engel is data for an quantile regression example in R):
data(engel)
fit1 <- rq(foodexp ~ income, tau = c(0.1,0.25,0.5,0.75,0.9), data = engel)
plot(summary(fit1))
I have no problem and my coefficeint graphs are drawn. But if I use this:
data(engel)
fit1 <- rq(foodexp ~ 0+income, tau = c(0.1,0.25,0.5,0.75,0.9), data = engel)
plot(summary(fit1))
I have a problem because the intercept goes through the origin. How can I get the plots as in the first code for the quantile regression without the intercept.