Nothing
library(testthat)
library(stdmod)
# context("Check standardizing selected variables with std_selected for factors")
dat <- test_x_1_w_1_v_1_cat1_n_500
dat$cat1 <- as.factor(dat$cat1)
transform0 <- function(data, vars) {
for (x in vars) {
data[x] <- scale(data[[x]])[, 1]
}
data
}
lm_raw <- lm(dv ~ iv*mod + v1 + cat1, dat)
lm_zx <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("iv")))
lm_zw <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("mod")))
lm_zy <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("dv")))
lm_zxzw <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("iv", "mod")))
lm_zxzy <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("iv", "dv")))
lm_zyzw <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("dv", "mod")))
lm_zall <- lm(dv ~ iv*mod + v1 + cat1, transform0(dat, c("iv", "dv", "mod")))
dat_tmp <- dat
dat_tmp$iv <- scale(dat$iv, scale = FALSE, center = TRUE)[, 1]
dat_tmp$mod <- scale(dat$mod, scale = sd(dat$mod), center = FALSE)[, 1]
lm_cxsw <- lm(dv ~ iv*mod + v1 + cat1, dat_tmp)
stdmod_x <- std_selected(lm_raw, to_scale = ~ iv, to_center = ~ iv)
stdmod_y <- std_selected(lm_raw, to_scale = ~ dv, to_center = ~ dv)
stdmod_w <- std_selected(lm_raw, to_scale = ~ mod, to_center = ~ mod)
stdmod_xw <- std_selected(lm_raw, to_scale = ~ mod + iv, to_center = ~ iv + mod)
stdmod_yw <- std_selected(lm_raw, to_scale = ~ mod + dv, to_center = ~ dv + mod)
stdmod_xy <- std_selected(lm_raw, to_scale = ~ dv + iv, to_center = ~ iv + dv)
stdmod_xyw <- std_selected(lm_raw, to_scale = ~ dv + iv + mod, to_center = ~ mod + iv + dv)
stdmod_cxsw <- std_selected(lm_raw, to_scale = ~ mod, to_center = ~ iv)
test_that("Standardize x", {
expect_equal(
coef(stdmod_x), coef(lm_zx),
ignore_attr = TRUE
)
})
test_that("Standardize y", {
expect_equal(
coef(stdmod_y), coef(lm_zy),
ignore_attr = TRUE
)
})
test_that("Standardize w", {
expect_equal(
coef(stdmod_w), coef(lm_zw),
ignore_attr = TRUE
)
})
test_that("Standardize xy", {
expect_equal(
coef(stdmod_xy), coef(lm_zxzy),
ignore_attr = TRUE
)
})
test_that("Standardize xw", {
expect_equal(
coef(stdmod_xw), coef(lm_zxzw),
ignore_attr = TRUE
)
})
test_that("Standardize yw", {
expect_equal(
coef(stdmod_yw), coef(lm_zyzw),
ignore_attr = TRUE
)
})
test_that("Standardize x, y, and w", {
expect_equal(
coef(stdmod_xyw), coef(lm_zall),
ignore_attr = TRUE
)
})
test_that("Center x and scale w", {
expect_equal(
coef(stdmod_cxsw), coef(lm_cxsw),
ignore_attr = TRUE
)
})
stdmod_nb_x <- std_selected_boot(lm_raw, to_scale = ~ iv, to_center = ~ iv, do_boot = FALSE)
stdmod_nb_y <- std_selected_boot(lm_raw, to_scale = ~ dv, to_center = ~ dv, do_boot = FALSE)
stdmod_nb_w <- std_selected_boot(lm_raw, to_scale = ~ mod, to_center = ~ mod, do_boot = FALSE)
stdmod_nb_xw <- std_selected_boot(lm_raw, to_scale = ~ mod + iv, to_center = ~ iv + mod, do_boot = FALSE)
stdmod_nb_yw <- std_selected_boot(lm_raw, to_scale = ~ mod + dv, to_center = ~ dv + mod, do_boot = FALSE)
stdmod_nb_xy <- std_selected_boot(lm_raw, to_scale = ~ dv + iv, to_center = ~ iv + dv, do_boot = FALSE)
stdmod_nb_xyw <- std_selected_boot(lm_raw, to_scale = ~ dv + iv + mod, to_center = ~ mod + iv + dv, do_boot = FALSE)
stdmod_nb_cxsw <- std_selected_boot(lm_raw, to_scale = ~ mod, to_center = ~ iv, do_boot = FALSE)
test_that("std_selected_boot with do_boot = FALSE", {
expect_equal(
coef(stdmod_nb_x), coef(stdmod_x),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_y), coef(stdmod_y),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_w), coef(stdmod_w),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_xw), coef(stdmod_xw),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_yw), coef(stdmod_yw),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_xy), coef(stdmod_xy),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_xyw), coef(stdmod_xyw),
ignore_attr = TRUE
)
expect_equal(
coef(stdmod_nb_cxsw), coef(stdmod_cxsw),
ignore_attr = TRUE
)
})
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.