powered by
This plots an RCurve Recruitment Function
# S4 method for RCurve plotRecruitment(theObject, overlay = FALSE, maxT = 100, increment = 0.1, xlab = "Time", ylab = "Patients", main = "Recruitment plot", type = "l", ...)
The name of the RCurve Object
Boolean whether to overlay on existing one (vs start a new one). Default=FALSE
Maximum time to plot up to. Default=100
Plotting time increment. Default=0.1
X-axis label. Default="Time"
Y-axis label. Default="Patients"
title of plot. Default="Recruitment plot"
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.
# NOT RUN { plotRecruitment(LinearR(12,100,100)) plotRecruitment(LinearR(12,100,100),xlab="Test x label",maxT=60) plotRecruitment(LinearR(20,90,90),overlay=TRUE,col=2,lty=2) # }
Run the code above in your browser using DataLab