Learn R Programming

tidySEM (version 0.2.8)

table_cors: Extract correlation tables

Description

Extracts a publication-ready covariance or correlation matrix from an object for which a method exists.

Usage

table_cors(x, value_column = "est_sig_std", digits = 2, ...)

Value

A Matrix or a list of matrices (in case there are between/within correlation matrices).

Arguments

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.

Author

Caspar J. van Lissa

Examples

Run this code
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)

Run the code above in your browser using DataLab