Skip to contents

Extracts and show the coefficients of a rqTList object along with their standard deviations.

Usage

# S3 method for rqTList
coSd(object, sOnly = FALSE, ...)

Arguments

object

An object with class "rq".

sOnly

Logical. If TRUE only the standard deviation (a.k.a standard errors) wille be show.

...

Not used.

Note

This method is very slow, because it calls summary.rq.

Examples

library(extRemes)
data(Fort)
tau <- c(0.95, 0.97, 0.98)
Rq <- list()
for (i in 1:3) {
   Rq[[i]] <- rq(Prec ~ year, data = Fort, tau = tau[i])
}
Rq <- as.rqTList(Rq)
coSd(Rq)
#>          (Intercept)    year          
#> tau=0.95  0.230 [0.361]  0.000 [0.000]
#> tau=0.97  0.380 [0.702]  0.000 [0.000]
#> tau=0.98  0.520 [0.850]  0.000 [0.000]