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 suggest
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 tra
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] Displayin
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 suggestions would be
appreciated.
Jose
4 matches
Mail list logo