Nothing
skip_if_not_installed("emmeans")
test_that("emmeans", {
m <- glm(am ~ factor(cyl), family = binomial(), data = mtcars)
EList <- emmeans::emmeans(m, pairwise ~ cyl, type = "resp")
E <- emmeans::emmeans(m, ~cyl, type = "resp")
C <- emmeans::contrast(E, method = "pairwise")
expect_identical(find_statistic(EList), "z-statistic")
expect_equal(
get_statistic(EList)$Statistic,
c(1.449, -0.377, -2.346, 1.243, 2.717, 1.393),
tolerance = 0.001
)
expect_equal(
get_statistic(EList)$Statistic[1:3],
get_statistic(E)$Statistic,
tolerance = 0.001
)
expect_equal(
get_statistic(EList)$Statistic[4:6],
get_statistic(C)$Statistic,
tolerance = 0.001
)
expect_equal(
get_parameters(EList)$Estimate,
c(0.727, 0.429, 0.143, 3.556, 16, 4.5),
tolerance = 0.001
)
})
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.