I have a data series of around 250 annual maximum rainfall measurements, maxima[,] and want to apply quantile regression to all series at once and obtain th
have a look at the structure produced by running str() of the summary-object:
str()
summary
require(quantreg) data(engel) mod <- rq(foodexp ~ income, data = engel) summ <- summary(mod, se = "boot") summ str(summ) summ$coefficients[,4]