Summarize an APA/FACETS table object
Usage
# S3 method for class 'apa_table'
summary(object, digits = 3, top_n = 8, ...)Arguments
- object
Output from
apa_table().- digits
Number of digits used for numeric summaries.
- top_n
Maximum numeric columns shown in
numeric_profile.- ...
Reserved for generic compatibility.
Interpreting output
overview: table size/composition and missingness.numeric_profile: quick distribution summary of numeric columns.caption/note: text metadata readiness.
Typical workflow
Build table with
apa_table().Run
summary(tbl)and inspectoverview.Use
plot.apa_table()for quick numeric checks if needed.
Examples
if (FALSE) { # interactive()
toy <- load_mfrmr_data("example_core")
fit <- fit_mfrm(toy, "Person", c("Rater", "Criterion"), "Score", method = "JML", maxit = 30)
tbl <- apa_table(fit, which = "summary")
summary(tbl)
}