Exporting large number to csv from R
问题 I came across a strange problem when trying to export an R dataframe to a csv file. The dataframe contains some big numbers, but when they are written to the csv file, they "lose" the decimal part and are instead written without it. But not like one would expect, but like this: Say 3224571816.5649 is the correct value in R. When written to csv, it becomes 32245718165649. I am using the write.csv2 function to write the csv. The separators are correct, as it works normally for smaller values.