.splitAt <- function(x, pos) unname(split(x, cumsum(seq_along(x) %in% pos)))
.chr_vector_to_df <- function(Text, ...) {
con <- textConnection(paste(Text, collapse = "\n"))
tryCatch(
read.table(con, stringsAsFactors = FALSE, na.strings = c("", "NA"), fill = TRUE, ...),
finally = close(con)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.