标签: r fixed-width
我有一个固定宽度的文件,我正在以这种方式阅读:
library(readr) mydata <- read.fwf(file="myfile.txt", widths = c(12, 7, etc))
它返回:
Error in substring(x, first, last) : invalid multibyte string at '<cd>S '
由于文件非常大,我想知道文件中返回错误的行号是什么。我怎样才能使用R?