Skip to content
Prev 132316 / 398506 Next

read.table() and precision?

If x is the result of your read.table, it is a double
precision number (matrix, data.frame, etc.), but by
default only up to 7 decimal digits of x are printed,
so you do not see the rest of x. 
Try for example
options(digits=15) 
and see how your x look then.
--- Wojciech Gryc <wojciech at gmail.com> wrote: