We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here’s a reproducible example using the bit64 package to create an int64:
library(tidyverse) library(bit64) # as.integer64 library(writexl) library(readxl) d <- tibble(a=pi, b=3L, c=as.integer64(3)) d write_xlsx(d, "saveint64.xlsx") read_xlsx("saveint64.xlsx")
"c" is written to the file as 1.482197E-323 (near zero) instead of the expected 3.
The text was updated successfully, but these errors were encountered:
Did you try the dev version? This was fixed recently.
Sorry, something went wrong.
No branches or pull requests
Here’s a reproducible example using the bit64 package to create an int64:
library(tidyverse)
library(bit64) # as.integer64
library(writexl)
library(readxl)
d <- tibble(a=pi, b=3L, c=as.integer64(3))
d
write_xlsx(d, "saveint64.xlsx")
read_xlsx("saveint64.xlsx")
"c" is written to the file as 1.482197E-323 (near zero) instead of the expected 3.
The text was updated successfully, but these errors were encountered: