-
Notifications
You must be signed in to change notification settings - Fork 327
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
int64 type in python, got numeric type in R #729
Comments
You can't as there is no (native) |
Thank you Dirk, so perhaps I should convert the column from int64 to string in python first, pass it to R to avoid loss of precision, then use bit64 package as.integer64 to convert back to int64? |
There is no loss of precision of |
There's a package adding (optional, opt-in) |
Related to #323 |
First thank the authors for such a useful package!
I have a python function. It returns a data frame, in python the column is int64. I use reticulate to call this function in R and save the data in a data.table. I check the column type and it is now numeric. In this process some digits of the column values are changed. Any idea how to avoid this problem?
The text was updated successfully, but these errors were encountered: