我正在尝试将.tab文件导入到R中,但其中一行包含意外数量的元素,这会给我一个错误。
data <- read.table(functions.tab, header = F, sep = "\t")
Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : line 397 did not have 4 elements
最好的方法是什么,所以我不会丢失任何信息?有没有办法将溢出元素合并到最后一列?
答案 0 :(得分:0)
我们可以使用fill
中的read.table
参数来查找由NA
data <- read.table(functions.tab, header = F, sep = "\t", fill = TRUE)