Big integers with many 0 on the right side are automatically converted to scientific format in any kind of output (printing on screen, writing to file, etc):
foo <- 100000
foo
# [1] 1e+05
write.table(foo)
print(foo)
foo <- foo + 1
foo
# [1] 100001
How to prevent this automatic conversion, to have big integers printed everywhere with whole digits? I am not looking for a kind of answer that have to remember it every time.