You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2021/12/07 18:56:00 UTC

[jira] [Updated] (ARROW-13035) [C++] Create a compute function returning indices of non-zero values

     [ https://issues.apache.org/jira/browse/ARROW-13035?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ASF GitHub Bot updated ARROW-13035:
-----------------------------------
    Labels: good-first-issue pull-request-available  (was: good-first-issue)

> [C++] Create a compute function returning indices of non-zero values
> --------------------------------------------------------------------
>
>                 Key: ARROW-13035
>                 URL: https://issues.apache.org/jira/browse/ARROW-13035
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: C++
>            Reporter: Antoine Pitrou
>            Assignee: Alessandro Molina
>            Priority: Major
>              Labels: good-first-issue, pull-request-available
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> This would be similar to Numpy's {{nonzero}} function:
> [https://numpy.org/doc/stable/reference/generated/numpy.nonzero.html]
> {code:python}
> >>> arr = np.array([4,5,0,6,0,5])
> >>> np.nonzero(arr)
> (array([0, 1, 3, 5]),)
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)