I\'m trying to read in a .csv file from the IRS and it doesn\'t appear to be formatted in any weird way.
I\'m using the read.table() function, which I h
read.table()
Depending on the data (e.g. tsv extension) it may use tab as separators, so you may try sep = '\t' with read.csv.
sep = '\t'
read.csv