summary.WCE {WCE} | R Documentation |
Summarize the results of a WCE object
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
## S3 method for class 'WCE'
summary(object, allres = FALSE, ...)
Arguments
object |
A |
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. |
... |
Optional; other parameters to be passed through to |
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.
References
Sylvestre, M. P., & Abrahamowicz, M. (2009). Flexible modeling of the cumulative effects of time-dependent exposures on the hazard. Statistics in medicine, 28(27), 3437-3453.
Examples
wce <- WCE(drugdata, "Cox", 1, 90, constrained = "R", id = "Id", event = "Event",
start = "Start", stop = "Stop", expos = "dose", covariates = c("age", "sex"))
summary(wce)