Exercise
- There are multiple ways to encode CSVs.
- Read in the Fisher dataset using
read.csv()then write the data to a separate file usingwrite.csv(). Call the filefisher_rewrite.csv. - Read in both
fisher_1927_grain.csvandfisher_rewrite.csvusingreadLines()then compare them. - How is data formatted by
write.csv():- There is an extra column created, what is its column name?
- What symbol was used to decorate the string values in the data.
- Read in the Fisher dataset using