
The packagetidySEM provides a ‘tidy’ workflow forconducting, reporting, and plotting structural equation modelinganalyses. It does not perform model estimation, but instead allows usersto estimate models in a software-agnostic way, using either the freeopen source R packageslavaan orOpenMx, orthe commercial closed-source programMplus (controlledthrough the R packageMplusAutomation). The aim oftidySEM is to provide three specific functions:
OpenMxThese functions are designed with thetidytools manifesto (Wickham, last updated 23-11-2019) in mind, andinterface with the existing suite of packages in thetidyverse.
You can install the public release oftidySEM from CRANwith:
install.packages("tidySEM")If you want access to the latest developer version, includingfeatures that may not yet be finalized, you can install the developmentversion oftidySEM from R-universe with:
install.packages('tidySEM',repos =c('https://cjvanlissa.r-universe.dev','https://cloud.r-project.org'))And if you are a developer and want to contribute totidySEM, or want to install a specific historical versionof the package, you can install directly from GitHub with:
install.packages("remotes")remotes::install_github('cjvanlissa/tidySEM')Every user-facing function in the package is documented, and thedocumentation can be accessed by running?function_name inthe R console, e.g.,?graph_sem.
Furthermore, there are three main vignettes, describing the threemain tracks oftidySEM functions:
You can cite the R-package with the following citation:
Van Lissa, C. J., (2019).tidySEM: Tidy structural equationmodeling. R package version 0.2.1.https://github.com/cjvanlissa/tidySEM/
If you have ideas, please get involved. You can contribute by openingan issue on ‘GitHub’, or sending a pull request with proposed features(see further instructions below).
By participating in this project, you agree to abide by theContributorCovenant.