Nothing
# creates an array of instances of RowData
as_RowData <- function(df, col_names = TRUE) {
df_cells <- purrr::modify(df, as_CellData)
df_rows <- pmap(df_cells, list)
if (col_names) {
df_rows <- c(list(as_CellData(names(df))), df_rows)
}
map(df_rows, ~ list(values = unname(.x)))
}
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.