Nothing
test_that("formula_utils", {
f1 <- ~b + a*c + b:d
f2 <- substitute_formula_vars(f1, list(a = c("hello", "world", "b"),
b = c("Q1", "Q2"),
c = "C"))
f2c <- as.character(f2)
expect_equal(f2c[length(f2c)],
"(Q1 + Q2) + (hello + world + b) * C + (Q1 + Q2):d")
})
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.