-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
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
tar_map()
does not interpret <integer64> values correctly
#94
Comments
Or is this by design? If so, is there any workaround other than converting it to |
This edge case happens because deparse(bit64::as.integer64(1))
#> [1] "structure(4.94065645841247e-324, class = \"integer64\")"
deparse(bit64::as.integer64(1), control = c("keepNA", "keepInteger"))
#> [1] "4.94065645841247e-324" Nothing in metaprogramming works for every edge case, which is why the Lines 32 to 38 in 507d06b
|
Thanks for explaining. |
See also ropensci/tarchetypes#94. The `game_id` is now converted to `character` class in `search_games()` as a workaround. Signed-off-by: Liang Zhang <[email protected]>
Prework
tarchetypes
and not a known limitation, usage error, or issue from another package thattarchetypes
depends on. If you are unsure, please submit a discussion thread instead.Description
When converting an class value,
tar_map()
does not handle correctly. See the reprexReproducible example
This is correct value
Created on 2022-05-19 by the reprex package (v2.0.1)
Session info
The text was updated successfully, but these errors were encountered: