[R] printing big real values

2011-01-19 Thread Adel ESSAFI
Hello, I have a file with very big values. I want to display the real values with classic ways (without exposant) summary(a[,1]); Min. 1st Qu.Median Mean 3rd Qu. Max. 1.198e+09 1.199e+09 1.200e+09 1.200e+09 1.201e+09 1.202e+09 Can you help please? Regards Adel --

Re: [R] printing big real values

2011-01-19 Thread Henrique Dallazuanna
Try this: options(scipen = 20) summary(a[,1]) On Wed, Jan 19, 2011 at 9:36 AM, Adel ESSAFI adeless...@gmail.com wrote: Hello, I have a file with very big values. I want to display the real values with classic ways (without exposant) summary(a[,1]); Min. 1st Qu.Median