While its nice to be able to read in a variety of data formats, it's equally important to be able to output data somewhere.
write.table()
: prints its required argument x
(after converting it to a data.frame
if it is not one nor a matrix
) to a file or connection.
write.table(x,file = "", append = FALSE, quote = TRUE, sep = " ", eol = "\n", na = "NA", dec = ".", row.names = TRUE, col.names = TRUE, qmethod = c("escape", "double"), fileEncoding = "")