Nothing
test_that("NAs turn in NULLs", {
df <- data.frame(
x = c(1, NA),
y = c("a", NA),
stringsAsFactors = FALSE
)
sql_df <- sqlData(ANSI(), df)
expect_equal(sql_df$x, SQL(c("1", "NULL")))
expect_equal(sql_df$y, SQL(c("'a'", "NULL")))
})
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.