In R, we can easily write a date frame object to a csv file. By using the method write.csv
, the csv file can be generated under the same directory of your R script.
write.csv(dataFrame, file="median.csv")
In R, we can easily write a date frame object to a csv file. By using the method write.csv
, the csv file can be generated under the same directory of your R script.
write.csv(dataFrame, file="median.csv")