summary.lsasimcluster | R Documentation |
Takes the output of cluster_gen
and creates summary statistics of the questionnaire variables
## S3 method for class 'lsasimcluster'
summary(
object,
digits = 4,
print = "partial",
print_hetcor = TRUE,
force_matrix = FALSE,
...
)
object |
output of |
digits |
loosely controls the number of digits (significant or not) in the output (for |
print |
"all" will pretty-print a summary of statistics, "partial" will only print cluster-level summaries; "none" outputs statistics as a list |
print_hetcor |
if |
force_matrix |
if |
... |
additional arguments (unused; added for compatibility with generic) |
list of summaries
Setting print="none"
allows for saving the results as an R object (list). Otherwise, the results will be simply printed and not savable.
Changing digits
may yield unexpected results for the estimates of continuous variables, given how most of them are printed using the number of significant digits (for more information, see help("summary")
).
Please note that datasets containing large values for the coefficient of variation (sigma / mu) should yield imprecise results.
anova.lsasimcluster()
n <- c(3, 30)
cls <- cluster_gen(n, n_X = 3, n_W = 5)
summary(cls)
summary(cls, print="none") # allows saving results
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.