powered by
A simple wrapper for write.table with the same options as read.delim
write.delim(df, file, quote = FALSE, row.names = FALSE, sep = "\t", ...)
A tab delimited text file
a dataframe.
outputfile path.
should elements of the dataframe be quoted for output.
should the output include rownames.
the delimiter between fields.
other parameters passed to write.table.
read.delim
if (FALSE) { x <- data.frame(a = I("a \" quote"), b = pi) write.delim(x, file = "foo.tab") }
Run the code above in your browser using DataLab