Skip to content

Commit efa5407

Browse files
committed
Add a dataset for testing warning message in stdmod_lavaan
1 parent 7ee8e35 commit efa5407

File tree

4 files changed

+93
-0
lines changed

4 files changed

+93
-0
lines changed

R/data_4.R

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#' @title Sample Dataset: A Path Model With A Moderator
2+
#'
3+
#' @description For testing the handling of warning
4+
#' in [stdmod_lavaan()]. Generated from the following
5+
#' model. `dv` has about 88% missing.
6+
#'
7+
#'```
8+
#'mod <-
9+
#'"
10+
#'med ~ iv + mod + iv:mod + cov1
11+
#'dv ~ med + cov2
12+
#'"
13+
#'```
14+
#'
15+
#' @format A data frame with 500 rows and 6 variables:
16+
#' \describe{
17+
#' \item{dv}{Dependent variable, continuous}
18+
#' \item{iv}{Independent variable, continuous}
19+
#' \item{med}{Mediator, continuous}
20+
#' \item{mod}{Moderator, continuous}
21+
#' \item{cov1}{Covariate, continuous}
22+
#' \item{cov2}{Covariate, continuous}
23+
#' }
24+
#'
25+
"test_mod3_miss"

data-raw/create_test_data_4.R

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#' #Create several datasets for testing purpose.
2+
#'
3+
#'
4+
5+
#' A path model
6+
#' For testing
7+
8+
library(lavaan)
9+
set.seed(164442)
10+
n <- 500
11+
x1 <- rnorm(n)
12+
c1 <- rnorm(n)
13+
w1 <- .5 * x1 + rnorm(n, 0, sqrt(1 - .5^2))
14+
m1 <- 10 + .2 * x1 + .1 * w1 + .2 * x1 * w1 + .1 * c1 + rnorm(n, 0, .5)
15+
summary(lm(m1 ~ x1 * w1 + c1))
16+
c2 <- rnorm(n)
17+
y <- 20 + .3 * m1 + .2 * c2 + rnorm(n, 0, .5)
18+
summary(lm(y ~ m1 + c2))
19+
dat <- data.frame(dv = y,
20+
iv = x1,
21+
mod = w1,
22+
med = m1,
23+
cov1 = c1,
24+
cov2 = c2)
25+
dat[1:(n * .88), "dv"] <- NA
26+
mod <-
27+
"
28+
med ~ iv + mod + iv:mod + cov1
29+
dv ~ med + cov2
30+
"
31+
fit <- sem(mod, dat, fixed.x = FALSE, missing = "fiml.x")
32+
tmpfct <- function(d, i) {
33+
update(fit, data = d[i, ])
34+
}
35+
# temp <- replicate(10, tmpfct(dat, sample.int(n, replace = TRUE)))
36+
test_mod3_miss <- dat
37+
usethis::use_data(test_mod3_miss, overwrite = TRUE)

data/test_mod3_miss.rda

19.9 KB
Binary file not shown.

man/test_mod3_miss.Rd

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)