View source: R/results-table_results.R
| table_cors | R Documentation | 
Extracts a publication-ready covariance or correlation matrix from an object for which a method exists.
table_cors(x, value_column = "est_sig_std", digits = 2, ...)
| x | An object for which a method exists. | 
| value_column | Character. Name of the column to use to propagate the matrix. Defaults to "est_sig_std", the standardized estimate with significance asterisks. | 
| digits | Number of digits to round to when formatting values. | 
| ... | Additional arguments passed to and from methods. | 
A Matrix or a list of matrices (in case there are between/within correlation matrices).
Caspar J. van Lissa
library(lavaan)
HS.model <- '  visual =~ x1 + x2 + x3
               textual =~ x4 + x5 + x6
               speed   =~ x7 + x8 + x9 '
fit <- cfa(HS.model,
           data = HolzingerSwineford1939,
           group = "school")
table_cors(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.