当前位置: 代码迷 >> 综合 >> R语言 CSV文件保存与打开 报错:In scan(*,EOF within quoted string)
  详细解决方案

R语言 CSV文件保存与打开 报错:In scan(*,EOF within quoted string)

热度:55   发布时间:2024-01-04 11:21:52.0

问题

在项目中发现R语言警告:

Warning messages:
1: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  :EOF within quoted string
2: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  :number of items read is not a multiple of the number of columns (读取的项目数必需是列数的倍数)

同时发现最后读取的文件行数少了许多,未能完整读取。

解决

发现其实是read.csv() 没有设置 quote="" 属性。而加入后,不会出现警告,但是列名(表头)和行名都有"",同时列名还加了 X 的 前缀,参考资料1 发现其实是因为 文件列和行名都有“”。因此源头出现在 文件保存的时候 使用 write.csv() 没有将 默认的quote = TRUE 改为 FALSE。改完字符串就不存在 “” ,可以安心用read.csv( quote="")了。

  相关解决方案