summary.WEE.linear: Summary methods for WEE linear Regression

Description Usage Arguments Value See Also Examples

View source: R/WEE_functions.r

Description

Returns a summary list for a WEE linear regression fit.

Usage

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

Arguments

object

object produced by WEE.linear.

...

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

Chisq

Chi-squared test statistics of the coefficients, only returned when boot > 0

p.value

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

Covariance

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

See Also

WEE.linear

Examples

1
2
3
4
5
6
## continued from WEE.linear
## summary of WEE linear object
summary(WEE.linear(y ~ x + z, D, 
        data = dat_sample, pd_pop = pD))                                       
summary(WEE.linear(y ~ x + z, D, 
        data = dat_sample, pd_pop = pD, boot=500))

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