summary.WEE.quantile: Summary methods for WEE Quantile Regression

Description Usage Arguments Value See Also Examples

View source: R/WEE_functions.r

Description

Returns a summary list for a WEE quantile regression fit.

Usage

1
2
## S3 method for class 'WEE.quantile'
summary(object, ...)

Arguments

object

object produced by WEE.quantile.

...

further arguments passed to or from other methods.

Value

a list is returned with the following components.

Coefficients

a vector of coefficients

StdErr

bootstrap standard errors of the coefficients, only returned when boot > 0

Wald

Wald test statistics of the coefficients, only returned when boot > 0

p.value

p-values of the Wald test statistics, only returned when boot > 0

Covariance

the estimated covariance matrix for the coefficients in the model, provided that boot > 0 in the called sequence

See Also

WEE.quantile

Examples

1
2
3
4
5
## continued from WEE.quantile
summary(WEE.quantile(y ~ x, D, tau = 0.5, 
                     data = dat_quantile, pd_pop = pd))
summary(WEE.quantile(y ~ x + z, D, tau = c(0.25,0.5), 
                     data = dat_quantile, pd_pop = pd, boot=500))

WEE documentation built on May 2, 2019, 6:43 a.m.