Learn R Programming

hdcuremodels (version 0.0.6)

nobs.mixturecure: Number of observations in mixturecure object

Description

Number of observations in fitted mixturecure object.

Usage

# S3 method for mixturecure
nobs(object, ...)

Value

number of subjects in the dataset.

Arguments

object

An object of class mixturecure.

...

other arguments.

Examples

Run this code
library(survival)
withr::local_seed(1234)
temp <- generate_cure_data(n = 100, j = 10, n_true = 10, a = 1.8)
training <- temp$training
fit <- curegmifs(Surv(Time, Censor) ~ .,
  data = training, x_latency = training,
  model = "weibull", thresh = 1e-4, maxit = 2000,
  epsilon = 0.01, verbose = FALSE
)
nobs(fit)

Run the code above in your browser using DataLab