Nothing
# Test-fixture helper:
# A replacement for dplyr::tibble to allow for dropping the dependency.
# Handles list columns nicely and enforces no strings as factors.
# Simple; no recycling or row names.
mk_df <- function(...) {
cols <- list(...)
n <- if (length(cols) > 0L) { length(cols[[1L]]) } else { 0L }
structure(
cols,
names = names(cols),
class = "data.frame",
row.names = if (n > 0L) { c(NA_integer_, -n) } else { integer(0) }
)
}
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.