[R] decimal sign

2009-09-01 Thread Alexandros Droseltis
Hello!

Is it possible to change the decimal sign in the histogram created by
hist() from dot to comma?

Thanks for any help!

Alexandros

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] decimal sign

2009-09-01 Thread David Winsemius


On Sep 1, 2009, at 3:25 AM, Alexandros Droseltis wrote:


Hello!

Is it possible to change the decimal sign in the histogram created by
hist() from dot to comma?


?options

options(OutDec = ,)

Seems to work as described, at least with hist.
--

David Winsemius, MD
Heritage Laboratories
West Hartford, CT

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.