Nothing
x <- seq(0, 2, len = 101)
y <- x^3
z <- data.frame(x, y)
# Rectangle rule ===============================================================
expect_equal(integrate_rectangle(z, right = FALSE), 3.9204)
expect_equal(integrate_rectangle(z, right = TRUE), 4.0804)
# Trapezoidal rule =============================================================
expect_equal(integrate_trapezoid(z), 4.0004)
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.