为什么字段分隔符必须只有一个字节?

时间:2010-04-28 19:05:42

标签: text r delimiter

data <- read.delim("C:\\test.txt", header = FALSE, sep = "$$$$$")
Error in scan(file, what = "", sep = sep, quote = quote, nlines = 1, quiet = TRUE,  : 
  invalid 'sep' value: must be one byte

为什么会有这样的限制?我能克服它吗?

1 个答案:

答案 0 :(得分:5)

这是一个潜在的解决方案。

假设这就是文件中的行

1$$$$$2$$$$$3$$$$$4

以下将创建一个矩阵,其变量存储为字符。

do.call(rbind,strsplit(readLines('test.txt'),'$$$$$',fixed=T))