| print.mfrm_apa_text | R Documentation |
Print APA narrative text with preserved line breaks
## S3 method for class 'mfrm_apa_text'
print(x, ...)
x |
Character text object from |
... |
Reserved for generic compatibility. |
Prints APA narrative text with preserved paragraph breaks using cat().
This is preferred over bare print() when you want readable multi-line
report output in the console.
The input object (invisibly).
The printed text is the same content stored in
build_apa_outputs(...)$report_text, but with explicit paragraph breaks.
Generate apa <- build_apa_outputs(...).
Print readable narrative with apa$report_text.
Use summary(apa) to check completeness before manuscript use.
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 25)
diag <- diagnose_mfrm(fit, residual_pca = "both")
apa <- build_apa_outputs(fit, diag)
apa$report_text
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.