Nothing
test_that("ndjson raw io works", {
dat <- head(mtcars)
rownames(dat) <- NULL
js <- write_ndjson_raw(dat)
expect_true(is.raw(js))
res <- read_ndjson_raw(js, 'df')
expect_identical(res, dat)
res <- read_ndjson_raw(js, 'list')
expect_true(is.list(res))
})
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.