plotSF,Curve-method {gestate} | R Documentation |
Method for plotting the Survival Function of a Curve object
Description
This plots a Curve Survival Function
Usage
## S4 method for signature 'Curve'
plotSF(
theObject,
overlay = FALSE,
maxT = 100,
minSF = 0,
increment = 0.1,
xlab = "Time",
ylab = "S(t)",
main = "Kaplan Meier plot",
type = "l",
...
)
Arguments
theObject |
The name of the RCurve Object |
overlay |
Boolean whether to overlay on existing one (vs start a new one). Default=FALSE |
maxT |
Maximum time to plot up to. Default=100 |
minSF |
Minimum SF to plot down to. Default=0 |
increment |
Plotting time increment. Default=0.1 |
xlab |
X-axis label. Default="Time" |
ylab |
Y-axis label. Default="S(t)" |
main |
title of plot. Default="Kaplan Meier plot" |
type |
type of plot (see standard graphical parameters). Default="l" (lines). |
... |
Standard graphical parameter arguments to be passed on to 'plot'/'lines', e.g. to change appearance of plot. |
Examples
plotSF(Weibull(100,1))
plotSF(Weibull(100,1),xlab="Test x label",maxT=60)
plotSF(Weibull(80,0.8),overlay=TRUE,col=2,lty=2)
[Package gestate version 1.6.0 Index]