save csv in r code example
Example 1: write csv in r
df <- data.frame(name = c("Jon", "Bill", "Maria"),
age = c(23, 41, 32))
write.csv(df,"C:\\Users\\Ron\\Desktop\\MyData.csv", row.names = FALSE)
Example 2: export csv in r
# to store in the current directory
write.csv(data, "data.csv")
# to store in a separate directory
write.csv(data, "file_path\\data.csv")
Example 3: write to csv in r
write.table(df, file = paste("myName.csv"),sep=",", row.names = FALSE)
# row.names = FALSE removes the index of the rows