print.pmrm_fit: Print a fitted PMRM.

View source: R/print.R

print.pmrm_fitR Documentation

Print a fitted PMRM.

Description

Print a fitted progression model for repeated measures (PMRM).

Usage

## S3 method for class 'pmrm_fit'
print(x, digits = 3L, ...)

Arguments

x

A fitted progression model for repeated measures (PMRM).

digits

Non-negative integer, number of digits for rounding.

...

Not used.

Value

NULL (invisibly). Called for side effects (printing to the R console).

See Also

Other visualization: plot.pmrm_fit()

Examples

  set.seed(0L)
  simulation <- pmrm_simulate_decline_proportional(
    visit_times = seq_len(5L) - 1,
    gamma = c(1, 2)
  )
  fit <- pmrm_model_decline_proportional(
    data = simulation,
    outcome = "y",
    time = "t",
    patient = "patient",
    visit = "visit",
    arm = "arm",
    covariates = ~ w_1 + w_2
  )
  print(fit)

pmrm documentation built on March 12, 2026, 5:07 p.m.