R/write_excel.R

Defines functions write.excel

# write.excel(my.df)
write.excel <- function(x,
                        row.names = FALSE,
                        col.names = TRUE,
                        ...) {

  write.table(x, "clipboard", sep = "\t", row.names = row.names, col.names = col.names, ...)
}
n8thangreen/LTBIscreeningproject documentation built on May 23, 2019, 12:01 p.m.