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 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.
A tab delimited text file
read.delim
# NOT RUN { ## Not run: x <- data.frame(a = I("a \" quote"), b = pi) write.delim(x, file = "foo.tab") ## End(Not run) # }
Run the code above in your browser using DataLab