R/excel_helper.R

Defines functions paste_to_excel copy_from_excel

paste_to_excel <- function(data, ...) {
  write.table(data, "clipboard", sep = "\t", row.names = F, ...)
}

copy_from_excel <- function(header=TRUE, ...) {
  read.table("clipboard",sep="\t",header=header, ...)
}
mluu921/workhelpR documentation built on May 23, 2019, 4:07 a.m.