-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
BUG: to_numeric doesn't work uint64 numbers #14422
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
Labels
Milestone
Comments
yep, we don't have lots of tests / support for uint64's atm. so pull requests to fix welcome. |
@jreback : What would be the best way to patch do you think? The problematic case comes when we have negative integers and positive integers exceed >>> import numpy as np
>>> np.array([-1, np.iinfo(np.int64).max + 1]) # Even numpy has issues.
array([ -1.00000000e+00, 9.22337204e+18]) |
Looks to work on master. Could use a test.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
uint64 isn't very well supported right now but something to consider.
The text was updated successfully, but these errors were encountered: