Nothing
#' check_for_file_extension: a function to make our package 'smart' enough to
#' handle .rds file extensions
#' @param path A string specifying a file path that ends in a file name, e.g. "~/dir/my_file.rds"
#'
#' @return a string with a filepath *without* an extension, e.g. "~/dir/my_file"
#' @keywords internal
check_for_file_extension <- function(path){
if (grepl('.rds', path)) {
path <- unlist(strsplit(path, split = ".rds", fixed = TRUE))
}
if (grepl('.bk', path)) {
path <- unlist(strsplit(path, split = ".bk", fixed = TRUE))
}
return(path)
}
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.