Nothing
# Data ####
#' Titanic data set
#' @param col_select (character vector): Columns to select.
#' @returns data frame
#' @examples
#' \donttest{
#' titanic(c("PassengerId", "Age", "Pclass", "Fare")) |>
#' head()
#' }
#'
#' @export
titanic <- function(col_select = NULL) {
titanic_data_url <- "https://raw.githubusercontent.com/eodaGmbH/rtabulator/main/data-raw/titanic.csv"
readr::read_csv(titanic_data_url, col_select = !!col_select, show_col_types = FALSE)
}
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.