Re: [R] stop R from rounding

2011-10-20 Thread Martin Maechler
> David Winsemius > on Thu, 20 Oct 2011 01:51:28 -0400 writes: > On Oct 19, 2011, at 11:29 PM, Alyse wrote: >> Hello, >> >> I have a column in a data frame that need to be 10 digits long. As >> such: >> >> Decimal.Year >> 1 1994.25997 >> 2 1

Re: [R] stop R from rounding

2011-10-19 Thread David Winsemius
On Oct 19, 2011, at 11:29 PM, Alyse wrote: Hello, I have a column in a data frame that need to be 10 digits long. As such: Decimal.Year 1 1994.25997 2 1994.26020 However, R keeps rounding the digits. As such: Decimal.Year 1 1994.260 2 1994.260 *Is there any way to stop this

[R] stop R from rounding

2011-10-19 Thread Alyse
Hello, I have a column in a data frame that need to be 10 digits long. As such: Decimal.Year 1 1994.25997 2 1994.26020 However, R keeps rounding the digits. As such: Decimal.Year 1 1994.260 2 1994.260 *Is there any way to stop this from happening?* Here is how I