#' Read iDigBio Raw Data
#'
#' reads a csv file from iDigBio.org with [fread()]
#' @param input a comma-delimited csv
#' @param output tb df a tibble or dataframe
#' @keywords parse, csv
#' @export
#' @examples
#' idigfread("filename.csv")
idigfread <- function(x){
require(data.table)
fread(x, sep=",", header=TRUE, stringsAsFactors=FALSE)}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.