Displaying 2 results from an estimated 2 matches for "059016".
Did you mean:
59016
2010 Dec 10
1
Stricter read.table?
read.table gives idiosyncratic results when the input is formatted
strangely, for example:
read.table(textConnection("a'b\nc'd\n"),header=FALSE,fill=TRUE,sep="",quote="'")
=> "c'd" "a'b" "c'd"
2010 Dec 11
0
is there a packge or code to generate markov chains in R
...re a stricter version of read.table (perhaps in a package) that gives
> errors or warnings if it finds quotation marks in the middle of fields or
> encounters other such peculiar situations?
I dissected this behavior a bit more here
<https://stat.ethz.ch/pipermail/r-devel/2010-November/059016.html>
(it is due to an inconsistency between the way that scan() and
readLines() handle lines with unterminated quotes, IIRC)
and Martin Maechler said
<https://stat.ethz.ch/pipermail/r-devel/2010-November/059107.html>
"I think it can be defended to file as a bug, but it is tricky to...