Re: [R] Displaying trailing zeroes

2008-01-24 Thread Christos Hatzis
formatC(round(12.01), digits=1, format=f) -Christos -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lucke, Joseph F Sent: Thursday, January 24, 2008 4:37 PM To: r-help@r-project.org Subject: [R] Displaying trailing zeroes round(12.01,1) will

Re: [R] Displaying trailing zeroes

2008-01-24 Thread Duncan Murdoch
On 24/01/2008 4:36 PM, Lucke, Joseph F wrote: round(12.01,1) will give the answer 12, not 12.0 or even 12. Those are all the same number. You aren't asking about the answer, you are asking about how to control how the number is printed. To make a table look nice, I need to display the

Re: [R] Displaying trailing zeroes

2008-01-24 Thread Peter Dalgaard
Lucke, Joseph F wrote: round(12.01,1) will give the answer 12, not 12.0 or even 12. To make a table look nice, I need to display the trailing zero so that just as round(12.05,1) yields 12.1, round(12.01) yields 12.0. I cannot find an answer in print() or format() or options(). Any