Nothing
#' Update the List of Packages on GitHub.
#'
#' @importFrom data.table fread
#'
#' @export
gh_update_package_list <- function() {
download_url <- "https://raw.githubusercontent.com/hoxo-m/gepuro-task-views-copy/master/package_list.txt"
package_list <- fread(download_url, sep="\t", header = FALSE, stringsAsFactors = FALSE,
colClasses = c("character", "character", "character"),
col.names = c("username", "package_name", "title"),
showProgress = FALSE, na.strings=NULL)
assign("package_list", package_list, envir = .options)
}
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.