我在将 .csv 文件读入 R 时遇到问题,例如
df1991 <- read.csv("http://dl.dropbox.com/s/vwdw2tsmgiiuxfa/1991.csv")
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names
fishdata <- read.csv("http://dl.dropbox.com/s/pin16l691p6j4ll/fishdata.csv", row.names=NULL)
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
more columns than column names
我已经尝试了 header 和 row.names 参数的各种变体。
为方便起见,我想从 Dropbox 导入 .csv 文件,我过去曾这样做过,没有遇到任何问题。有什么建议么?