Learn R Programming

frailtySurv (version 1.3.8)

plot.fitfrail: Plot method for fitfrail objects

Description

Plot the cumulative baseline hazard estimates or the parameter trace from model estimation.

Usage

# S3 method for fitfrail
plot(x, type = c("cumhaz", "trace"), ...)

Value

The plot object.

Arguments

x

a fitfrail object

type

string, the type of plot. Can be either "cumhaz" to plot the mean estimated cumulative hazard or "trace" to plot the paramater and log-likelihood trace.

...

extra arguments include:

CI for type="cumhaz", numeric confidence interval between 0 and 1. If CI=0, no confidence interval is displayed. Otherwise, the bootstrapped confidence interval is calculated and displayed.

end for type="cumhaz", numeric x-axis limit (plot up to time end)

show.loglik for type="trace", logical whether to show the log-likelihood trace.

Author

John. V Monaco, Malka Gorfine, Li Hsu

See Also

fitfrail

Examples

Run this code
if (FALSE) {
data(drs)
fit.drs <- fitfrail(Surv(time, status) ~ treated + cluster(subject_id), 
                    drs, frailty="gamma")

# Plot the parameter and log-likelihood trace
plot(fit.drs, type="trace") 

# This may take a while to run. 
# Use parameter B to specify the number of repetitions in the weighted bootstrap
plot(fit.drs, type="cumhaz", CI=0.95)
}

Run the code above in your browser using DataLab