You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by formatC() in the toJSON method for numeric vectors.
A workaround is either
toJSON(117229L) # i.e. treat as an integer vector/scalar
or
toJSON(117229, digits = 6)
It's as simple as that, numeric values are being corrupted when converted to JSON:
Perhaps there's some implicit conversion from double to float in the underlying C code?
The text was updated successfully, but these errors were encountered: