On 1/24/08, alex lam (RI) <[EMAIL PROTECTED]> wrote: > Dear R users, > > Just a quick question, how do I prevent 100000 printed as 1e+05 when I > print it into a file?
?options You would be interested in "scipen" and/or "digits". # # Set digits display options options(digits = 4) options(scipen = 6) 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.