## S3 method for class 'rqss':
summary(object, cov = FALSE, ztol = 1e-5, ...)
rqss
fitting, describing
an additive model estimating a conditional quantile function.
See qss
for details on how to specify these terms.Vcov
and a list of covariance matrices for the nonparametric
components as Vqss
summary.gam
in Simon Wood's (2006) summary.rq
for
further details and references.
The function produces a conventional coefficient table with standard errors
t-statistics and p-values for the coefficients on the parametric part of the
model, and another table for additive nonparametric effects. The latter
reports F statistics intended to evaluate the significance of these components
individually. In addition the fidelity (value of the QR objective function
evaluated at the fitted model), the effective degrees of freedom, and the
sample size are reported.[2] Koenker, R. and I. Mizera, (2003) Penalized Triograms: Total Variation Regularization for Bivariate Smoothing; JRSS(B) 66, 145--163.
[3] Wood, S. (2006) Generalized Additive Models, Chapman-Hall.
plot.rqss
n <- 200
x <- sort(rchisq(n,4))
z <- x + rnorm(n)
y <- log(x)+ .1*(log(x))^2 + log(x)*rnorm(n)/4 + z
f <- rqss(y ~ qss(x) + z)
summary(f)
Run the code above in your browser using DataLab