Nothing
test_that("D() can look inside simple functions", {
expect_equal(body(D(a*x + b ~ x)), quote(a))
f <- makeFun(a*x + b ~ .)
expect_equal(body(D(f(x) ~ x)), quote(a))
})
test_that("antiD() can look inside simple functions", {
soln <- quote((x^2 * a + 2 * x * b)/2 + C)
expect_equal(body(antiD(a*x + b ~ x)), soln)
f <- makeFun(a*x + b ~ .)
expect_equal(body(antiD(f(x) ~ x)), soln)
})
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.