A sequence of coefficient estimates for quantile
regressions with varying tau
parameters is visualized.
# S3 method for rqs
plot(x, parm = NULL, ols = TRUE,
mfrow = NULL, mar = NULL, ylim = NULL, main = NULL, col = 1:2, lty = 1:2,
cex = 0.5, pch = 20, type = "b", xlab = "", ylab = "", …)
an object of class "rqs"
as produce by rq
(with a vector of tau
values).
a specification of which parameters are to be plotted, either a vector of numbers or a vector of names. By default, all parameters are considered.
logical. Should a line for the OLS coefficient (as estimated
by lm
) be added?
graphical parameters. Suitable defaults are chosen based on the coefficients to be visualized.
graphical parameters. For each parameter, the first
element corresponds to the rq
coefficients and the second to
the lm
coefficients.
further graphical parameters
passed to plot
.
A matrix with all coefficients visualized is returned invisibly.
The plot
method for "rqs"
objects visualizes the
coefficients only, confidence bands can be added by using the plot
method for the associated "summary.rqs"
object.
# NOT RUN {
## fit Engel models (in levels) for tau = 0.1, ..., 0.9
data("engel")
fm <- rq(foodexp ~ income, data = engel, tau = 1:9/10)
## visualizations
plot(fm)
plot(fm, parm = 2, mar = c(5.1, 4.1, 2.1, 2.1), main = "", xlab = "tau",
ylab = "income coefficient", cex = 1, pch = 19)
# }
Run the code above in your browser using DataLab