#' Read GBIF Raw Data
#'
#' reads a csv file from GBIF.org with [fread()]
#' @param input a tab-delimited csv
#' @return tbl_df a tibble or dataframe
#' @keywords parse, tsv
#' @export
#' @examples
#' gbifread("tsvfilename.csv")
gbifread <- function(x){
require(data.table)
fread(x, sep="\t",
header=TRUE, stringsAsFactors=FALSE, quote="")}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.