Learn R Programming

frailtypack (version 2.7.1)

plot.jointPenal: Plot Method for a Joint frailty model.

Description

Plots estimated baseline survival and hazard functions of a joint frailty model (output from an object of class 'frailtyPenal' for joint frailty models ) for each type of event (terminal or recurrent). Confidence bands are allowed.

Usage

## S3 method for class 'jointPenal':
plot(x, event = "both", type.plot = "hazard", conf.bands = FALSE,
 pos.legend="topright", cex.legend = 0.7, ylim, main, color = 2, ...)

Arguments

x
A joint model, or more generaly an object of class frailyPenal for Joint frailty model (output from calling frailtyPenal function).
event
a character string specifying the type of curve. Possible value are "terminal", "recurrent", or "both". The default is "both".
type.plot
a character string specifying the type of curve. Possible value are "hazard", or "survival". The default is "hazard". Only the first words are required, e.g "haz", "su"
conf.bands
logical value. Determines whether confidence bands will be plotted. The default is to do so.
pos.legend
The location of the legend can be specified by setting this argument to a single keyword from the list '"bottomright"', '"bottom"', '"bottomleft"', '"left"', '"topleft"', '"top"', '"topright"', '"right"' and '"center"'. The default is '"topright"'
cex.legend
character expansion factor *relative* to current 'par("cex")'. Default is 0.7
ylim
y-axis limits
main
plot title
color
curve color (integer)
...
other unused arguments

Value

  • Print a plot of the baseline survival or hazard functions for each type of event or both with the confidence bands or not (conf.bands argument)

See Also

frailtyPenal

Examples

Run this code
data(readmission)

#-- Gap-time
modJoint.gap <- frailtyPenal(Surv(time,event)~cluster(id)+sex+dukes+
charlson+terminal(death),formula.terminalEvent=~sex+dukes+charlson,
data=readmission,n.knots=14,kappa=c(100,100))

#-- It takes around 1 minute to converge --#

plot(modJoint.gap,type.plot="haz",event="recurrent",conf.bands=TRUE)
plot(modJoint.gap,type.plot="haz",event="terminal",conf.bands=TRUE)
plot(modJoint.gap,type.plot="haz",event="both",conf.bands=TRUE)

plot(modJoint.gap,type.plot="su",event="recurrent",conf.bands=TRUE)
plot(modJoint.gap,type.plot="su",event="terminal",conf.bands=TRUE)
plot(modJoint.gap,type.plot="su",event="both",conf.bands=TRUE)

Run the code above in your browser using DataLab