Nothing
context("simpr::simpr_spec")
library(dplyr)
test_that("is.simpr_spec works on output of both specify() and define", {
specify(a = ~ rnorm(10)) %>%
is.simpr_spec() %>%
expect_true()
specify(a = ~ rnorm(n)) %>%
define(n = 20) %>%
is.simpr_spec() %>%
expect_true()
})
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.