View source: R/extractors.AdPaik.R
plot.AdPaik | R Documentation |
Plots Related to the the 'Adapted Paik et Al.' Model
## S3 method for class 'AdPaik'
plot(
x,
which = c(1, 2),
captions = c("Plot 1: Baseline Hazard", "Plot 2: Posterior Frailty Estimate"),
...
)
x |
An object of class 'AdPaik'. |
which |
A numeric vector indicating which plots to display. Choices: 1 = Baseline Hazard, 2 = Posterior Frailty Estimate. |
captions |
A character vector with captions for each plot. |
... |
Additional arguments to be passed to other methods. |
No return value. This function generates plots.
# Import data
data(data_dropout)
# Define the variables needed for the model execution
eps_paik <- 1e-10
categories_range_min <- c(-8, -2, eps_paik, eps_paik, eps_paik)
categories_range_max <- c(-eps_paik, 0.4, 1 - eps_paik, 1, 10)
time_axis <- c(1.0, 1.4, 1.8, 2.3, 3.1, 3.8, 4.3, 5.0, 5.5, 5.8, 6.0)
formula <- time_to_event ~ Gender + CFUP + cluster(group)
# Call the main model function
result <- AdPaikModel(formula, data_dropout, time_axis, categories_range_min, categories_range_max)
plot(result)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.