Nothing
generate_numeric_test_data <- function() {
set.seed(1812)
out <- data.frame(obs = rnorm(50))
out$pred <- .2 + 1.1 * out$obs + rnorm(50, sd = 0.5)
out$pred_na <- out$pred
ind <- (1:5) * 10
out$pred_na[ind] <- NA
out$rand <- sample(out$pred)
out$rand_na <- out$rand
out$rand_na[ind] <- NA
out
}
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.