Nothing
skip_on_os(c("mac", "solaris"))
skip_if_not_installed("nlme")
skip_if_not_installed("effects")
skip_if_not_installed("emmeans")
test_that("ggpredict", {
data(Ovary, package = "nlme")
m1 <- nlme::gls(follicles ~ Time, Ovary, correlation = nlme::corAR1(form = ~ 1 | Mare))
p <- ggpredict(m1, "Time")
expect_equal(p$predicted[1], 11.49246, tolerance = 1e-3)
p <- ggeffect(m1, "Time")
expect_equal(p$predicted[1], 11.49246, tolerance = 1e-3)
p <- ggemmeans(m1, "Time")
expect_equal(p$predicted[1], 11.49246, tolerance = 1e-3)
})
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.