I'd like to save the number 0.0000012 to a file just as it appears, but when
I dput(0.0000012, "t.txt"), I got 1.2e-06, NOT 0.0000012.
Anybody knows how I can do this?

> 0.0000012
[1] 1.2e-06

> as.character(0.0000012)
[1] "1.2e-06"

> dput(0.0000012, "t.txt")


Thanks.

        [[alternative HTML version deleted]]

______________________________________________
[email protected] 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.

Reply via email to