Nothing
suppressWarnings(library(lavaan))
# Define our other variables
M <- "visual"
IV <- c("ageyr", "grade")
DV <- c("speed", "textual")
# Prepare model specification
latent <- list(
visual = paste0("x", 1:3),
textual = paste0("x", 4:6),
speed = paste0("x", 7:9)
)
indirect <- list(IV = IV, M = M, DV = DV)
mediation <- list(speed = M, textual = M, visual = IV)
HS.model <- write_lavaan(latent = latent)
fit.cfa <- cfa(HS.model, HolzingerSwineford1939)
fit.sem <- sem(HS.model, HolzingerSwineford1939)
fit.lavaan <- lavaan(HS.model, HolzingerSwineford1939,
auto.var = TRUE,
auto.fix.first = TRUE, auto.cov.lv.x = TRUE
)
HS.model2 <- write_lavaan(
mediation = mediation,
indirect = indirect,
label = TRUE
)
label <- list(
ageyr = "Age", speed = "Speed", grade = "Grade",
visual = "Visual", textual = "Textual"
)
s3 <- rep("", 3)
manual.structure <- data.frame(
factors = c(s3, names(latent), s3),
items = unlist(latent)
)
data <- HolzingerSwineford1939
data$visual <- rowMeans(data[paste0("x", 1:3)])
data$textual <- rowMeans(data[paste0("x", 4:6)])
data$speed <- rowMeans(data[paste0("x", 7:9)])
fit.sem2 <- sem(HS.model2, data)
# ____________________________________________________________________________
# Tests ####
test_that("nice_tidySEM on CFA", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.cfa),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM wrong labels", {
skip_if_not_installed("tidySEM")
expect_error(
nice_tidySEM(fit.cfa, label = "wrong.labels")
)
})
test_that("nice_tidySEM on CFA with manual structure", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.cfa, layout = manual.structure),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on SEM", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on SEM with manual structure", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem, layout = manual.structure),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on SEM with automatic structure", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem2, layout = indirect),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on SEM with automatic structure and labels", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem2,
layout = indirect,
label = label
),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on lavaan", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.lavaan),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on lavaan with manual structure", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.lavaan, layout = manual.structure),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on sem with hide_nonsig_edges", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem, hide_nonsig_edges = TRUE),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on sem with hide_cov", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem, hide_cov = TRUE),
c("gg", "ggplot")
)
})
test_that("nice_tidySEM on sem with reduce_items", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem, reduce_items = c(x = 0.4, y = 0.2)),
c("gg", "ggplot")
)
expect_error(nice_tidySEM(fit.sem, reduce_items = "not numeric"))
expect_error(nice_tidySEM(fit.sem, reduce_items = c(1, 2, 3)))
})
test_that("nice_tidySEM on sem with plot = FALSE", {
skip_if_not_installed("tidySEM")
expect_s3_class(
nice_tidySEM(fit.sem, plot = FALSE),
"sem_graph"
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.