tests/testthat/test_stdmod_selected_update.R

library(testthat)
library(stdmod)

# context("Check update method")

dat <- test_x_1_w_1_v_1_cat1_n_500

lm_0 <- lm(dv ~ iv*mod , dat)

set.seed(649831074)
stdmod_0 <- std_selected_boot(lm_0, to_scale = ~ mod + dv, to_center = ~ mod + dv,
                               nboot = 100,
                               full_output = TRUE)
summary(stdmod_0)
termlabels_0std <- eval(parse(text = deparse(attr(terms(stdmod_0), "term.labels"))))

lm_1 <- update(lm_0, . ~  . + v1)
summary(lm_1)
termlabels_1 <- eval(parse(text = deparse(attr(terms(lm_1), "term.labels"))))
termvariables_1 <- deparse(attr(terms(lm_1), "variables"))
resp_1 <- attr(terms(lm_1), "response")

lm_2 <- update(lm_0, . ~  . - mod)
summary(lm_2)
termlabels_2 <- eval(parse(text = deparse(attr(terms(lm_2), "term.labels"))))
termvariables_2 <- deparse(attr(terms(lm_2), "variables"))
resp_2 <- attr(terms(lm_2), "response")

lm_3 <- update(lm_0, v1 ~ .)
summary(lm_3)
termlabels_3 <- eval(parse(text = deparse(attr(terms(lm_3), "term.labels"))))
termvariables_3 <- deparse(attr(terms(lm_3), "variables"))
resp_3 <- attr(terms(lm_3), "response")

set.seed(649831074)
stdmod_1 <- update(stdmod_0, . ~ . + v1)
termlabels_1std <- eval(parse(text = deparse(attr(terms(stdmod_1), "term.labels"))))
termvariables_1std <- deparse(attr(terms(stdmod_1), "variables"))
resp_1std <- attr(terms(stdmod_1), "response")

set.seed(649831074)
stdmod_2 <- update(stdmod_0, . ~ . - mod)
termlabels_2std <- eval(parse(text = deparse(attr(terms(stdmod_2), "term.labels"))))
termvariables_2std <- deparse(attr(terms(stdmod_2), "variables"))
resp_2std <- attr(terms(stdmod_2), "response")

set.seed(649831074)
stdmod_2b <- update(stdmod_2, . ~ . + mod)
termlabels_2bstd <- eval(parse(text = deparse(attr(terms(stdmod_2b), "term.labels"))))
termvariables_2bstd <- deparse(attr(terms(stdmod_2b), "variables"))
resp_2stdb <- attr(terms(stdmod_2b), "response")

set.seed(649831074)
stdmod_1_check <- std_selected_boot(lm_1, to_scale = ~ mod + dv, to_center = ~ mod + dv,
                               nboot = 100,
                               full_output = TRUE)
coef(stdmod_1)
coef(stdmod_1_check)
confint(stdmod_1, type = "boot")
confint(stdmod_1_check, type = "boot")

set.seed(649831074)
stdmod_2_check <- std_selected_boot(lm_2, to_scale = ~ mod + dv, to_center = ~ mod + dv,
                               nboot = 100,
                               full_output = TRUE)
coef(stdmod_2)
coef(stdmod_2_check)
confint(stdmod_2, type = "boot")
confint(stdmod_2_check, type = "boot")

stdmod_2b_check <- stdmod_0
coef(stdmod_2b)
coef(stdmod_2b_check)
confint(stdmod_2b, type = "boot")
confint(stdmod_2b_check, type = "boot")


# stdmod_3 <- update(stdmod_0, v1 ~ .)
# termlabels_3std <- eval(parse(text = deparse(attr(terms(stdmod_3), "term.labels"))))
# termvariables_3std <- deparse(attr(terms(stdmod_3), "variables"))
# resp_3std <- attr(terms(stdmod_3), "response")

test_that("Check terms labels 1", {
    expect_equal(
        termlabels_1std, termlabels_1,
        ignore_attr = TRUE
      )
  })

test_that("Check terms labels 2", {
    expect_equal(
        termlabels_2std, termlabels_2,
        ignore_attr = TRUE
      )
  })

# test_that("Check terms labels 3", {
#     expect_equal(
#         termlabels_3std, termlabels_3,
#         ignore_attr = TRUE
#       )
#   })

test_that("Check terms variables 1", {
    expect_equal(
        termvariables_1std, termvariables_1,
        ignore_attr = TRUE
      )
  })

test_that("Check terms variables 2", {
    expect_equal(
        termvariables_2std, termvariables_2,
        ignore_attr = TRUE
      )
  })

# test_that("Check terms variables 3", {
#     expect_equal(
#         termvariables_3std, termvariables_3,
#         ignore_attr = TRUE
#       )
#   })

test_that("Check coefs 1", {
    expect_equal(
        coef(stdmod_1), coef(stdmod_1_check),
        ignore_attr = TRUE
      )
  })

test_that("Check coefs 2", {
    expect_equal(
        coef(stdmod_2), coef(stdmod_2_check),
        ignore_attr = TRUE
      )
  })

test_that("Check coefs 2b", {
    expect_equal(
        coef(stdmod_2b), coef(stdmod_2b_check),
        ignore_attr = TRUE
      )
  })

test_that("Check boot ci 1", {
    expect_equal(
        confint(stdmod_1, type = "boot"), confint(stdmod_1_check, type = "boot"),
        ignore_attr = TRUE
      )
  })

test_that("Check boot ci 2", {
    expect_equal(
        confint(stdmod_2, type = "boot"), confint(stdmod_2_check, type = "boot"),
        ignore_attr = TRUE
      )
  })

test_that("Check boot ci 2b", {
    expect_equal(
        confint(stdmod_2b, type = "boot"), confint(stdmod_2b_check, type = "boot"),
        ignore_attr = TRUE
      )
  })

Try the stdmod package in your browser

Any scripts or data that you put into this service are public.

stdmod documentation built on Sept. 30, 2024, 9:42 a.m.