Skip to content

write.table

3 messages · Fluss, Sundar Dorai-Raj, Brian Ripley

#
See the "scipen" argument in ?options.

write.table(data.frame(x = 0.0005))
options(scipen = 1)
write.table(data.frame(x = 0.0005))

--sundar
fluss wrote:
#
?options, see scipen.

Or, use format() to convert table before writing it.