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
为什么会有这样的限制?我能克服它吗?
答案 0 :(得分:5)
这是一个潜在的解决方案。
假设这就是文件中的行
1$$$$$2$$$$$3$$$$$4
以下将创建一个矩阵,其变量存储为字符。
do.call(rbind,strsplit(readLines('test.txt'),'$$$$$',fixed=T))