Nothing
#' @title Simulate non-proportional slowing model.
#' @export
#' @family simulations
#' @description Simulate a dataset from the non-proportional slowing model.
#' @details See `vignette("models", package = "pmrm")` for details.
#' @inheritSection pmrm_simulate Simulated data
#' @return A `tibble` of clinical data simulated from the slowing model.
#' See the "Simulated data" section of this help file for details.
#' @inheritParams pmrm_simulate
#' @param beta Numeric matrix with one row for each study arm
#' (including the control arm)
#' and one column for each study visit (including baseline).
#' See `vignette("models", package = "pmrm")` for details on this parameter.
#' @examples
#' pmrm_simulate_slowing_nonproportional()
pmrm_simulate_slowing_nonproportional <- function(
patients = 300,
visit_times = seq(from = 0, to = 4, by = 1),
spline_knots = visit_times,
spline_method = c("natural", "fmm"),
tau = 0,
alpha = log(spline_knots + 1),
beta = cbind(
0,
rbind(
0,
rep(0.2, length(visit_times) - 1L),
rep(0.3, length(visit_times) - 1L)
)
),
gamma = numeric(0L),
sigma = rep(1, length(visit_times)),
rho = rep(0, length(visit_times) * (length(visit_times) - 1L) / 2L)
) {
pmrm_simulate(
patients = patients,
visit_times = visit_times,
spline_knots = spline_knots,
spline_method = match.arg(spline_method),
tau = tau,
alpha = alpha,
beta = beta,
gamma = gamma,
sigma = sigma,
rho = rho,
slowing = TRUE,
proportional = FALSE
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.