Rstudio读取文件错误 Error in read.table(file = file, header = header, sep = sep, quote = quote, : 列的数目比列的名字要多 解决步骤 1.从你的csv中去掉你的标题 2.read.csv(‘filename.csv’, header = F, encoding = ‘utf-8’) 记住是header = F,如果你的编码不是utf-8,用notepad打开转码成ASCII,再用encoding=‘utf-8’