Re: [R] Priniting numerics

2010-11-27 Thread Berend Hasselman
Ron_M wrote: > > I am not sure if I understood the help page. It says "fixed notation will > be preferred unless it is more than ‘scipen’ digits wider". If I > understood correctly it says, the corresponding number needs to be less > wider than 'scipen' digit, to print it numerically. Let s

Re: [R] Priniting numerics

2010-11-27 Thread Ron Michael
m: Peter Ehlers Subject: Re: [R] Priniting numerics To: "Ron Michael" Cc: "r-help@r-project.org" Date: Saturday, 27 November, 2010, 5:43 PM On 2010-11-27 02:15, Ron Michael wrote: > Hi all, can somebody help me on my little problem? I want to print a number > say "

Re: [R] Priniting numerics

2010-11-27 Thread Peter Ehlers
On 2010-11-27 02:15, Ron Michael wrote: Hi all, can somebody help me on my little problem? I want to print a number say "10^10" is numerical format not in scientific notation. I ttied following: options(scipen = 1) print(10^10, 10) [1] 1e+10 I am not getting my desired output in simple numer

[R] Priniting numerics

2010-11-27 Thread Ron Michael
Hi all, can somebody help me on my little problem? I want to print a number say "10^10" is numerical format not in scientific notation. I ttied following:   > options(scipen = 1) > print(10^10, 10) [1] 1e+10 I am not getting my desired output in simple numerical format. How can I get that?   Tha