Nothing
#' List WebGestalt Servers
#'
#' List available WebGestalt servers.
#'
#'
#' @return A data frame of available servers.
#'
#' @importFrom readr read_tsv
#' @export
#' @aliases listArchiveURL
#'
listArchiveUrl <- function(){
archiveUrl <- read_tsv("https://www.webgestalt.org/archiveURL.txt", col_names=FALSE)
return(archiveUrl)
}
#' @export
listArchiveURL <- function(...) {
warning("Function listArchiveURL is deprecated and changed to listArchiveUrl!\n")
return(listArchiveUrl(...))
}
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.