Nothing
create_con_and_load_data <- function() {
con <- DBI::dbConnect(duckdb::duckdb())
DBI::dbWriteTable(con, "cars", datasets::mtcars)
DBI::dbWriteTable(con, "economics", as.data.frame(ggplot2::economics))
DBI::dbWriteTable(
con, "synth",
data.frame(
letter = rep(letters[1:3], 2),
number = 1:6,
day = seq(as.Date("1950-01-01"), length.out = 6, by = "10 years"),
day_and_time = seq(
as.POSIXct("1950-01-01"),
length.out = 6, by = "10 years"
),
boolean = c(rep(TRUE, 3), rep(FALSE, 3))
)
)
DBI::dbWriteTable(con, "diamonds", ggplot2::diamonds)
con
}
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.