Monday, 20 April 2015

What all data analysis scripts should do....

They should read in some data at the beginning:
read.csv("myData.csv")

They should do some analysis and/or draw some graphs.

They should save some output:
write.csv(MyData, file = "MyData.csv")

from here:
http://rprogramming.net/write-csv-in-r/

No comments:

Post a Comment