Displaying 1 result from an estimated 1 matches for "nnewline".
Did you mean:
newline
2003 Nov 05
1
read.table leaves out data when reading multiple-line records (PR#4955)
Dear all,
I discovered that read.table (RW1.8.0) leaves out data when reading
multiple-line records.
Replication code at the end
Best regards
Jens Oehlschlägel
> filename <- "c:/tmp/c2.csv"
>
> data <- data.frame(a=c("c", "e\nnewline"), b=c("d", '"quoted
simpleline"'))
>
> #look at the data
> write.table(data, sep=",", row.names=FALSE)
"a","b"
"c","d"
"e
newline","\"quoted simpleline\""
>
> # write i...