Why the field separator character must be only one byte?
Posted
by gd047
on Stack Overflow
See other posts from Stack Overflow
or by gd047
Published on 2010-04-28T19:05:41Z
Indexed on
2010/04/28
22:27 UTC
Read the original article
Hit count: 186
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
Why there is a restriction like this? Can I overcome it?
© Stack Overflow or respective owner