Nothing
test_that("write_json_raw() works", {
dat <- head(iris, 3)
dat$Species <- as.character(dat$Species)
js <- write_json_raw(dat)
expect_true(is.raw(js))
res <- read_json_raw(js)
expect_identical(res, dat)
})
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.