How to Export a DataFrame to a Text File in R
Here is the general syntax that you may use to export your DataFrame to a text file in R: write.table(DataFrame Name, “Path to export the DataFrame\\File Name.txt”) If you wish to add a separator, such as a comma separator, then use: write.table(DataFrame Name, “Path to export the DataFrame\\File Name.txt”, sep=”,”) You may exclude the row … Read more