Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
Description
This would be similar to Numpy's nonzero function:
https://numpy.org/doc/stable/reference/generated/numpy.nonzero.html
>>> arr = np.array([4,5,0,6,0,5]) >>> np.nonzero(arr) (array([0, 1, 3, 5]),)
Attachments
Issue Links
- is required by
-
ARROW-15218 [C++] Add Decimal support to indices_nonzero compute function
- Resolved
- links to