summary.WCE: Method to summarize the results of a WCE object

Description Usage Arguments Value Author(s) References Examples

View source: R/summary.WCE.R

Description

This is a method to summarize the results from either the best fitting or all of the estimated models from a WCE object.

Usage

1
2
## S3 method for class 'WCE'
summary(object, allres = FALSE, ...)

Arguments

object

A WCE object

...

Optional; other parameters to be passed through to summary.

allres

Logical. If TRUE, then a summary is produced for every model from the WCE object. If FALSE, then a summary is produced only for the best fitting model, as determined by AIC or BIC. Default to FALSE.

Value

The summary method prints to screen the estimated coefficients, standard errors and p-values for the coefficients (if any) included in the WCE model. It also provides the partial likelihood and AIC or BIC value, and the number of events used in the estimation of the model.

Author(s)

Marie-Pierre Sylvestre
marie-pierre.sylvestre@umontreal.ca

References

Sylvestre MP, Abrahamowicz M. Flexible modeling of the cumulative effects of time-dependent exposures on the hazard. Stat Med. 2009 Nov 30;28(27):3437-53.

Examples

1
2
3
4
wce <- WCE(drugdata, "Cox", 1, 90, constrained = "R", id = "Id", event = "Event",
		   start = "Start", stop = "Stop", expos = "dose", covariates = c("age", "sex"))

summary(wce)

Example output

*** Right-constrained estimated WCE function  (Proportional hazards model).***

Estimated coefficients for the covariates: 
      coef exp(coef) se(coef)      z     p
age 0.0114    1.0115   0.0040 2.8815 0.004
sex 0.6805    1.9748   0.1187 5.7307 0.000

Partial log-likelihood: -1896.541  BIC: 3822.821

Number of events: 383

Use plot(wce) to see the estimated weight function corresponding to this model.

If you report these results, please cite Sylvestre MP, Abrahamowicz M. Flexible Modeling of the Effects of Time-Dependent Exposures on the
Hazard. Statistics in Medicine 2009; 28(27):3437-3453.

WCE documentation built on May 2, 2019, 3:35 p.m.

Related to summary.WCE in WCE...