Nothing
#' Convert an object to a settings data frame
#'
#' This function coerces non-`settings_df` class objects into `settings_df` class
#' objects.
#'
#' @param x The object to convert into a data list.
#' @return A `settings_df` class object.
#' @export
as_settings_df <- function(x) {
UseMethod("as_settings_df")
}
#' @export
as_settings_df.data.frame <- function(x) {
rownames(x) <- as.character(rownames(x))
validate_settings_df(x)
sdf <- new_settings_df(x)
return(sdf)
}
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.