Nothing
skip_on_os(c("mac", "solaris"))
test_that("check vars", {
data(iris)
m_check <- lm(Sepal.Width ~ Sepal.Length + Species, data = iris)
expect_error(
ggpredict(m_check, terms = "Specis"),
regex = "\"Species\""
)
m_check <- lm(Sepal.Width ~ Sepal.Length + Species, data = iris)
expect_error(
ggpredict(m_check, terms = c("Sepal.Lenght", "Specis")),
regex = "\"Sepal.Length\", \"Species\""
)
})
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.