fit.models.expert | R Documentation |
The fit.models.expert
function extends the capabilities of the survHE
package by allowing users to fit parametric survival models that incorporate expert opinion. Expert opinions can be on survival probabilities at specific time points or on expected differences in survival between groups. This function is particularly useful when empirical data is scarce or incomplete, and expert knowledge can help inform the analysis.
fit.models.expert(
formula = NULL,
data,
distr = NULL,
method = "bayes",
opinion_type = "survival",
param_expert = NULL,
...
)
formula |
An object of class |
data |
A data frame containing the variables specified in the |
distr |
A character vector specifying the distribution(s) to be used for the survival model(s), as per
Note: The Generalized F model is not available when |
method |
The estimation method to be used. Options are:
Note: The |
opinion_type |
A character string specifying the type of expert opinion provided:
|
param_expert |
A list where each element corresponds to a time point (if applicable) and contains a data frame of expert opinions. Each data frame should have the following columns, with each row representing an expert:
|
... |
Other arguments required depending on the analysis. Important ones include:
|
This function enables the integration of expert opinion into parametric survival models. Expert opinion can be particularly valuable when data is limited or censored, as it allows for informed estimates of survival functions or differences between treatment groups.
The function supports both Maximum Likelihood Estimation (MLE) and Bayesian methods. For Bayesian estimation, models are fitted using Stan or JAGS, depending on the distribution. Pre-compiling Stan models using compile_stan
is highly recommended to reduce computation time.
An object of class expertsurv
containing the fitted models, parameter estimates, and other relevant information. This object can be used with plotting and summary functions for further analysis.
## Not run:
library(dplyr)
# Example 1: Incorporating Expert Opinion on Survival Probabilities Using MLE
# Define expert opinion as a normal distribution centered at 0.1 with sd 0.05
param_expert_example1 <- list()
param_expert_example1[[1]] <- data.frame(
dist = "norm",
wi = 1, # Ensure weights sum to 1 across experts
param1 = 0.1,
param2 = 0.05,
param3 = NA
)
# Time point at which expert opinion is provided
timepoint_expert <- 14 # For example, 14 months
# Prepare the data
# Assume 'data' is your dataset containing 'time' and 'censored' variables
data2 <- data %>%
rename(status = censored) %>%
mutate(
time2 = ifelse(time > 10, 10, time),
status2 = ifelse(time > 10, 0, status)
)
# Fit the survival models using MLE, incorporating expert opinion
example1 <- fit.models.expert(
formula = Surv(time2, status2) ~ 1,
data = data2,
distr = c("wei", "gom"), # Weibull and Gompertz distributions
method = "mle",
opinion_type = "survival",
times_expert = timepoint_expert,
param_expert = param_expert_example1
)
# Plot the fitted survival curves along with the Kaplan-Meier estimate
plot(example1, add.km = TRUE, t = 0:20)
# Compare models using Akaike Information Criterion (AIC)
model.fit.plot(example1, type = "aic")
# Example 2: Incorporating Expert Opinion Using Bayesian Estimation
# Pre-compile Stan models (ideally after installing the package)
# This step can be time-consuming but only needs to be done once per session
compiled_models_saved <- compile_stan()
# Fit the survival models using Bayesian estimation with expert opinion
example1_bayes <- fit.models.expert(
formula = Surv(time2, status2) ~ 1,
data = data2,
distr = c("wei", "gom"),
method = "bayes",
opinion_type = "survival",
times_expert = timepoint_expert,
param_expert = param_expert_example1,
iter = 2000, # Set to a high number for convergence (e.g., 2000 or more)
compile_mods = compiled_models_saved
)
# Summarize the Bayesian model results
summary(example1_bayes)
# Plot the Bayesian fitted survival curves
plot(example1_bayes, add.km = TRUE, t = 0:20)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.