summary.mfrm_population_prediction: Summarize a population-level design forecast

View source: R/api-prediction.R

summary.mfrm_population_predictionR Documentation

Summarize a population-level design forecast

Description

Summarize a population-level design forecast

Usage

## S3 method for class 'mfrm_population_prediction'
summary(object, digits = 3, ...)

Arguments

object

Output from predict_mfrm_population().

digits

Number of digits used in numeric summaries.

...

Reserved for generic compatibility.

Value

An object of class summary.mfrm_population_prediction with:

  • design: requested future design

  • overview: run-level overview

  • forecast: facet-level forecast table

  • ademp: simulation-study metadata

  • notes: interpretation notes

See Also

predict_mfrm_population()

Examples


spec <- build_mfrm_sim_spec(
  n_person = 40,
  n_rater = 4,
  n_criterion = 4,
  raters_per_person = 2,
  assignment = "rotating"
)
pred <- predict_mfrm_population(
  sim_spec = spec,
  n_person = 60,
  reps = 2,
  maxit = 10,
  seed = 123
)
summary(pred)


mfrmr documentation built on March 31, 2026, 1:06 a.m.