I have two data frames that I want to join on a character column they have in common. The other columns consist of one or more numeric columns of which one has relatively large numbers (8 or 7 digits, while all of the other numeric columns consist of 2 to 4 digit numbers).
When I use a left-join on this character column the 'relatively large number column' has one entry that becomes NA. Mousing over the column reveals that the range of the column is set between 0-40000000, leading to one entry being just outside of this range (40230510).
I tried to solve this by dividing everything in this relatively larger column by 100 and then joining again. This, however, leads to the same entry becoming NA. Now the range is set between 0-400000.
The largest number in the (non-divided) column is 40230510 and the smallest 8488068. How does R set this column range and is there a way to not get an NA value for this entry?