All Projects → mattansb → Structural Equation Modeling For Psychologists

mattansb / Structural Equation Modeling For Psychologists

Licence: other
Lesson files used in the Structural Equation Modeling for Psychologists.

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Structural Equation Modeling For Psychologists

Gtsummary
Presentation-Ready Data Summary and Analytic Result Tables
Stars: ✭ 450 (+552.17%)
Mutual labels:  statistics, rstats
Tidyversity
🎓 Tidy tools for academics
Stars: ✭ 155 (+124.64%)
Mutual labels:  statistics, rstats
Zelig
A statistical framework that serves as a common interface to a large range of models
Stars: ✭ 89 (+28.99%)
Mutual labels:  statistics, rstats
ciencia datos
El curso en español, de acceso abierto y gratuito más grande del mundo sobre Ciencia de Datos en salud.
Stars: ✭ 66 (-4.35%)
Mutual labels:  statistics, rstats
teach-r-online
Materials for the Teaching statistics and data science online workshops in July 2020
Stars: ✭ 52 (-24.64%)
Mutual labels:  statistics, rstats
BayesHMM
Full Bayesian Inference for Hidden Markov Models
Stars: ✭ 35 (-49.28%)
Mutual labels:  statistics, rstats
Collapse
Advanced and Fast Data Transformation in R
Stars: ✭ 184 (+166.67%)
Mutual labels:  statistics, rstats
Rbook
Source files for "Learning Statistics with R"
Stars: ✭ 267 (+286.96%)
Mutual labels:  statistics, rstats
Blogr
Scripts + data to recreate analyses published on http://benjaminlmoore.wordpress.com and http://blm.io
Stars: ✭ 23 (-66.67%)
Mutual labels:  statistics, rstats
Data Science Best Resources
Carefully curated resource links for data science in one place
Stars: ✭ 1,104 (+1500%)
Mutual labels:  statistics
Decapitated
Headless 'Chrome' Orchestration in R
Stars: ✭ 65 (-5.8%)
Mutual labels:  rstats
Matlabstan
Matlab interface to Stan, a package for Bayesian inference
Stars: ✭ 59 (-14.49%)
Mutual labels:  statistics
Sever
🔪Good-looking problems: customise your Shiny disconnected screen and error messages
Stars: ✭ 60 (-13.04%)
Mutual labels:  rstats
Philentropy
Information Theory and Distance Quantification with R
Stars: ✭ 65 (-5.8%)
Mutual labels:  statistics
Stream Statistics
streaming statistical calculations for node
Stars: ✭ 59 (-14.49%)
Mutual labels:  statistics
Ruby Statistics
Ruby gem for some statistical operations without any statistical language dependency
Stars: ✭ 67 (-2.9%)
Mutual labels:  statistics
Lexisnexistools
📰 Working with newspaper data from 'LexisNexis'
Stars: ✭ 59 (-14.49%)
Mutual labels:  rstats
Textdata
Download, parse, store, and load text datasets instead of storing it in packages
Stars: ✭ 59 (-14.49%)
Mutual labels:  rstats
Datacamp
🍧 A repository that contains courses I have taken on DataCamp
Stars: ✭ 69 (+0%)
Mutual labels:  statistics
Excelize
Golang library for reading and writing Microsoft Excel™ (XLSX) files.
Stars: ✭ 10,286 (+14807.25%)
Mutual labels:  statistics

Structural Equation Modeling foR Psychologists


Last updated 2020-10-30.

This Github repo contains all lesson files for SEM - Practical Applications in R. The goal is to impart students with the basic tools to construct, evaluate and compare Structural Equation Models (SEM; w/ plots), using lavaan.

These topics were taught in the graduate-level course Structural Equation Modeling (Psych Dep., Ben-Gurion University of the Negev, Spring, 2019). This course assumes basic competence in R (importing, regression modeling, plotting, etc.), along the lines of Practical Applications in R for Psychologists.

Notes:

  • This repo contains only materials relating to Practical Applications in R, and does not contain any theoretical or introductory materials.
  • Please note that some code does not work on purpose, to force students to learn to debug.

Setup

You will need:

  1. A fresh installation of R (preferably version 3.6 or above).
  2. RStudio IDE (optional, but recommended).
  3. The following packages, listed by lesson:
Lesson Packages
01 path analysis lavaan, tidySEM, dplyr, ggplot2, semPlot
02 latent variables and hypothesis testing lavaan, semTools, dplyr, semPlot, psychTools, bayestestR
03 cross-lagged panel model lavaan, semPlot, bayestestR
04 multiple group analysis lavaan, bayestestR, semPlot, semTools
05 latent growth curve modeling lavaan, semPlot
06 assumption checks lavaan, semTools, car
07 moderation in lavaan lavaan, semTools
08 EFA parameters, psych, lavaan, semPlot, dplyr, tidyr, psychTools, nFactors

You can install all the packages used by running:

# in alphabetical order:

pkgs <- c(
  "bayestestR", "car", "dplyr", "ggplot2", "lavaan", "nFactors",
  "parameters", "psych", "psychTools", "semPlot", "semTools", "tidyr",
  "tidySEM"
)

install.packages(pkgs, dependencies = TRUE)
Package Versions The package versions used here:
  • bayestestR 0.7.5 (CRAN)
  • car 3.0-10 (CRAN)
  • dplyr 1.0.2 (CRAN)
  • ggplot2 3.3.2 (CRAN)
  • lavaan 0.6-7 (CRAN)
  • nFactors 2.4.1 (CRAN)
  • parameters 0.9.0 (CRAN)
  • psych 2.0.9 (CRAN)
  • psychTools 2.0.8 (CRAN)
  • semPlot 1.1.2 (CRAN)
  • semTools 0.5-3 (CRAN)
  • tidyr 1.1.2 (CRAN)
  • tidySEM 0.1.3 (CRAN)

Other Useful Resources

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].