bit64 is an R package for vectors of 64-bit integers
Questions tagged [bit64]
21 questions
1
vote
0 answers
dplyr lag has a problem with integer64 from bit64
dplyr::lag works fine with integers with the first entry being , but with bit64::integer64 the first entry is a huge number.
This is my setting:
library(tidyverse)
library(magrittr)
#> ...
library(bit64)
#> Loading required package: bit
#>…

Habert
- 347
- 2
- 10
1
vote
0 answers
R feather integer64 preserve large numbers
I have a dataset with some large numbers:
require(pacman)
p_load(bit64,
feather,
data.table)
sampleDT <- data.table(ID = c(1,2,3),
Val = c(11111111111,2222222222,3333))
sampleDT[, Val :=…

LeGeniusII
- 900
- 1
- 10
- 28
1
vote
0 answers
How to resolve bug stemming from interference of rgdal, bit64 and dplyr on RedHat Linux Distro
When running the following code with a library include of rgdal on Redhat I get an incorrect result.
Concretely, the inner_join seems to copy every row of the first data frame without considering the keys of the second data frame (hence just copying…

camo
- 422
- 4
- 9
1
vote
0 answers
Install bit 64 RStudio
Good morning,
I am trying to install this package:
install.packages("bit64")
But I am receiving this error:
Warning in install.packages :
InternetOpenUrl failed: 'No se pudo establecer una conexión con el servidor'
Warning in install.packages :
…

anitasp
- 577
- 4
- 13
- 35
0
votes
1 answer
Format comma for a bit 64 integer
Is there anyway to make the formatC type function work on big integers (int64)? Tried to look everywhere.
This clearly won't work, but looking for an equivalent:
x <- 2254728285
formatC(x, big.mark = ',', format = 'd')
[1] "NA"
Warning message:
In…

Gopala
- 10,363
- 7
- 45
- 77
0
votes
0 answers
R integer to python integer conversion issue package reticulate
I need to pass a very big integer argument to python using reticulate call, But I can't seem to find a way to do this. Any suggestions on how to do this?
See the python object is in int class but the R numeric is passed as float which is expected,…

anonR
- 849
- 7
- 26