On 12/5/07, Jeff Delmerico <[EMAIL PROTECTED]> wrote: > Does anyone know if there is a way to change the display or storage settings > so that the values will be displayed to their full precision? Or does > rnorm only produce values to single precision? > > Any assistance would be greatly appreciated.
As far as I know (beware, I'm a novice), internally R stores to and uses full precision. The display of the data, however, is controlled by "digits". You'd need to put, say, options(digits=7) in your Rprofile.site (if it doesn't exist, creat it in the R etc/ folder). You might also be interested by "scipen". Check ?options. Regards, Liviu ______________________________________________ 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.