Nothing
test_that("a file is created", {
file <- tempfile()
on.exit(unlink(file))
df = data.frame(
mtcars$mpg, mtcars$cyl)
expect_false(file.exists(file))
save_correlation_matrix(df, filename = file)
expect_true(file.exists(file))
})
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.