CSV or coma separated values is format suited both for transfer and data storage.
1,2,3
4,5,6
7,8,9
This is basic form of csv document. Columns separated by coma and row of data per row of text.
There are only two function you have to worry about when dealing with csv from R programming language.
- write.csv(a, b) where a is data.frame that should be saved to the file, and b is path to the file.
- a<- read.csv(b) where a is data.frame where we are going to write read data from the file, and b is path to the file.
For video tutorial, check the link below.
No comments:
Post a Comment