| mfrm_results_interactive | R Documentation |
mfrm_results()Interactively choose data-frame columns before calling mfrm_results()
mfrm_results_interactive(
data,
include = "standard",
output = c("object", "summary", "tables", "html")
)
data |
A long-format data frame. |
include |
Passed to |
output |
Passed to |
This helper is deliberately opt-in and stops in non-interactive sessions.
It asks the user to choose the person, score, optional weight, and facet
columns, prints reproducible code for the selected roles, then fits the
default legacy-compatible RSM/JML route before calling
mfrm_results(). Use explicit fit_mfrm() calls in scripts, Quarto
documents, tests, and reproducible analyses.
The selected mfrm_results() output.
Interactive prompts are useful at the console but are unsafe defaults for reproducible analysis, package checks, batch scripts, and manuscripts. The helper therefore prints replay code and leaves the scripted route explicit.
mfrm_results(), fit_mfrm(), run_mfrm_facets()
if (interactive()) {
toy <- load_mfrmr_data("example_core")
res <- mfrm_results_interactive(toy)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.