I\'m trying to convert big number to hexadecimal representation in R, but it fails, because it can\'t fit into 32-bit integer. Is there any way to overcome this limitation?
Luckily I found the solution, but requires library gmp
library(gmp) > as.character(as.bigz(0xffffffff+0x10000000),b=16) [1] "10fffffff"