I have imported a dataset which contains large numbers which were automatically converted to exponential notation. Because I had to see the full number, I used options(scipen = 999)
. I discovered that the imported number did not equal the original number from the dataset. For example: 5765949338897345178 was changed to 5765949338897345536.
How can it be that these numbers are not the same? The weird thing is that when I use: which(dim_alias1$id == 5765949338897345536)
and which(dim_alias1$id == 5765949338897345178)
, it returns the same rownumber. How is this possible?