R/write.tab.R

Defines functions write.tab

Documented in write.tab

write.tab <- function(data, filename, sep="\t", quote=FALSE, row.names=FALSE, ...) {
    write.table(x=data, file=filename, sep, quote, row.names, ...)
}

Try the preputils package in your browser

Any scripts or data that you put into this service are public.

preputils documentation built on July 1, 2020, 5:35 p.m.