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
the following code: import arkouda as ak ak.histogram2d(ak.array([1, 2, 3]), ak.array([1.5, 2.5, 3.5]))
import arkouda as ak
ak.histogram2d(ak.array([1, 2, 3]), ak.array([1.5, 2.5, 3.5]))
gives the error: RuntimeError: Error: histogram2DMsg: (int64,float64) not implemented
RuntimeError: Error: histogram2DMsg: (int64,float64) not implemented
optimally, I would like the ability for all combinations of numeric dtypes to be histogrammed against one another
The text was updated successfully, but these errors were encountered:
Closes #3283: histogram2d between different dtypes (#3763)
1ed6d6b
* Adding mixed dtypes to Histogram2D, matching numpy outputs, and testing * adding atoimic changes and check testing for multidim --------- Co-authored-by: jaketrookman <[email protected]>
jaketrookman
Successfully merging a pull request may close this issue.
the following code:
import arkouda as ak
ak.histogram2d(ak.array([1, 2, 3]), ak.array([1.5, 2.5, 3.5]))
gives the error:
RuntimeError: Error: histogram2DMsg: (int64,float64) not implemented
optimally, I would like the ability for all combinations of numeric dtypes to be histogrammed against one another
The text was updated successfully, but these errors were encountered: