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

Description Usage Arguments Value See Also Examples

View source: R/WEE_functions.r

Description

Returns a summary list for a WEE logistic regression fit.

Usage

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

Arguments

object

object produced by WEE.logistic.

...

further arguments passed to or from other methods.

Value

a list is returned with the following components.

Coefficients

a vector of coefficients

Oddsratio

the exponentiated coefficients, namely the odds ratio associated with the corresponding covariate

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.logistic

Examples

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

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