Displaying 1 result from an estimated 1 matches for "nrowv".
Did you mean:
nrow
2003 Jul 22
2
read.table with option dec=',' (PR#3532)
...on from: (NULL) (193.51.197.253)
I have a problem using read.table:
If in a dataframe, we have a string containing a dot, write.table
will not write any file while using option "dec=','".
Example
> m <- "1.5"
> write.table(m,dec=',')
Error in if (n%%nrowv == 0) value <- value[rep(1:nrowv, length = n), , :
missing value where TRUE/FALSE needed
In addition: Warning messages:
1: no finite arguments to min; returning Inf
2: no finite arguments to max; returning -Inf
Whereas the contrary write the table:
> m <- "1,5"
>...