R: Export
Revision as of 10:32, 28 November 2019 by Onnowpurbo (talk | contribs)
# Loading mtcars data data("mtcars") # Write data to txt file: tab separated values # sep = "\t" write.table(mtcars, file = "mtcars.txt", sep = "\t", row.names = TRUE, col.names = NA) # Write data to csv files: # decimal point = "." and value separators = comma (",") write.csv(mtcars, file = "mtcars.csv") # Write data to csv files: # decimal point = comma (",") and value separators = semicolon (";") write.csv2(mtcars, file = "mtcars.csv")
# Loading mtcars data data("mtcars") library("readr") # Writing mtcars data to a tsv file write_tsv(mtcars, path = "mtcars.txt") # Writing mtcars data to a csv file write_csv(mtcars, path = "mtcars.csv")