Returns the raw survival data which was generated for simulation.
Arguments
- x
A
SimulationResults
object created bygetSimulationSurvival()
.- aggregate
Logical. If
TRUE
the raw data will be aggregated similar to the result ofgetData()
, default isFALSE
.
Value
Returns a data.frame
.
Details
This function works only if getSimulationSurvival()
was called with a maxNumberOfRawDatasetsPerStage
> 0 (default is 0
).
This function can be used to get the simulated raw data from a simulation results
object obtained by getSimulationSurvival()
.
Note that getSimulationSurvival()
must called before with maxNumberOfRawDatasetsPerStage
> 0.
The data frame contains the following columns:
iterationNumber
: The number of the simulation iteration.stopStage
: The stage of stopping.subjectId
: The subject id (increasing number 1, 2, 3, ...)accrualTime
: The accrual time, i.e., the time when the subject entered the trial.treatmentGroup
: The treatment group number (1 or 2).survivalTime
: The survival time of the subject.dropoutTime
: The dropout time of the subject (may beNA
).lastObservationTime
: The specific observation time.timeUnderObservation
: The time under observation is defined as follows:event
:TRUE
if an event occurred;FALSE
otherwise.dropoutEvent
:TRUE
if an dropout event occurred;FALSE
otherwise.
Examples
if (FALSE) { # \dontrun{
results <- getSimulationSurvival(
pi1 = seq(0.3, 0.6, 0.1), pi2 = 0.3, eventTime = 12,
accrualTime = 24, plannedEvents = 40, maxNumberOfSubjects = 200,
maxNumberOfIterations = 50, maxNumberOfRawDatasetsPerStage = 5
)
rawData <- getRawData(results)
head(rawData)
dim(rawData)
} # }