Skip to content

Instantly share code, notes, and snippets.

@dholstius
Last active August 29, 2015 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dholstius/a246a57560e025247e70 to your computer and use it in GitHub Desktop.
Save dholstius/a246a57560e025247e70 to your computer and use it in GitHub Desktop.
read_tbl
read_tbl <- function (..., stringsAsFactors = FALSE, check.names = FALSE) {
require(dplyr)
as.tbl(read.csv(..., stringsAsFactors = stringsAsFactors, check.names = check.names))
}
write_tbl <- function (x, ..., row.names = FALSE) {
write.csv(as.tbl(x), ..., row.names = row.names)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment