Skip to contents

The dCox_sim dataset contains simulated survival times, censoring indicators and two binary covariates for demonstrating the Cox-related procedures included in bigPLScox.

Format

A data frame with 10000 observations on the following 5 variables.

id

observation identifier

time

simulated survival time

status

event indicator (1 = event, 0 = censored)

x.1

first binary covariate

x.2

second binary covariate

Examples

# \donttest{
data(dCox_sim)
with(dCox_sim, table(status))
#> status
#>    0    1 
#> 5612 4388 
# }