Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
R: number format, writing 1e-5 instead of 0.00001

This is a v short and simple Q, but I haven't found a solution for it.

I have a df, with numeric columns, how can I write it as a table using write.table such that R write the full number 40000000 instead of 4e+07 for example?

share|improve this question

migrated from stats.stackexchange.com Aug 13 '12 at 19:43

marked as duplicate by Brian Diggs, Andrie, GSee, Thierry, Maerlyn Aug 14 '12 at 11:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 3 down vote accepted

check google for options(scipen)

share|improve this answer
3  
Also, ?options then look for scipen in the help page. Describes it more succinctly than some of the discussions you'll pull up with google. (In particular options (scipen=3) would do the trick for the OP's specific example.) – Wayne Aug 13 '12 at 18:59
perfect answer, thanks! – Dnaiel Aug 24 '12 at 14:01

Not the answer you're looking for? Browse other questions tagged or ask your own question.