What does the “More Columns than Column Names” error mean?

后端 未结 5 1418
春和景丽
春和景丽 2021-01-07 21:09

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

5条回答
  •  再見小時候
    2021-01-07 21:32

    Depending on the data (e.g. tsv extension) it may use tab as separators, so you may try sep = '\t' with read.csv.

提交回复
热议问题