# read_1 -----------------------------------------------------------------------
read_1 <- function(file)
{
utils::read.csv2(
file, stringsAsFactors = FALSE
)
}
# read_2 -----------------------------------------------------------------------
read_2 <- function(file, ...)
{
utils::read.table(
file, header = TRUE, sep = ";", dec = ".", stringsAsFactors = FALSE, ...
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.