Nothing
context("checkFormula")
test_that("checkFormula", {
f = ~ x
expect_succ_all(Formula, f)
expect_fail_all(Formula, 1)
f = y ~ x + z
expect_true(checkFormula(f))
f = y ~ x:z + I(a)
expect_true(checkFormula(f))
expect_true(checkFormula(NULL, null.ok = TRUE))
expect_error(assertFormula(1, "formula"))
})
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.