if (suppressWarnings(
require("testthat") &&
require("ggeffects") &&
require("sjmisc") &&
require("robustbase")
)) {
data(efc)
m1 <- lmrob(neg_c_7 ~ c12hour + e42dep + c161sex + c172code, data = efc)
test_that("ggpredict, lmrob", {
pr <- ggpredict(m1, "c12hour")
expect_equal(pr$predicted[1], 11.02581, tolerance = 1e-4)
})
test_that("ggeffect, lmrob", {
pr <- ggeffect(m1, "c12hour")
expect_equal(pr$predicted[1], 11.02581, tolerance = 1e-4)
})
test_that("ggemmeans, lmrob", {
expect_null(ggemmeans(m1, "c12hour"))
})
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.