*::flatten and *::count for axis != 0
See original GitHub issueAll array types, including IndexedArray (and UnionArray, if it exists when you’re ready for it).
Discussion of how to interpret negative axis here.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
what does axes.flat in matplotlib do? - Stack Overflow
An alternative would be to use axes.flatten() , where flatten() is method of the numpy array. Instead of an iterator, it returns a...
Read more >Flatten a NumPy array with ravel() and flatten() - nkmk note
You can flatten a NumPy array ndarray with the numpy.label() function, or the ravel() and flatten() methods of numpy.ndarray .
Read more >ak.flatten — Awkward Array documentation - Read the Docs
Returns an array with one level of nesting removed by erasing the boundaries between consecutive lists. Since this operates on a level of...
Read more >How to flatten a hierarchical index in Pandas DataFrame ...
In such cases, the hierarchical index has to be flattened at both levels. Syntax: pandas.DataFrame.groupby(by=None, axis=0, level=None).
Read more >ak.flatten — Awkward Array 2.0.1 documentation
Returns an array with one level of nesting removed by erasing the boundaries between consecutive lists. Since this operates on a level of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

@ianna I added a lot of issues yesterday, which cover the gap from the present to the minimum viable product for users that is expected at the end of the 6-month sprint. (Every item in the README checklist for the 6-month sprint has been translated into an issue.)
I’ve assigned the array operations to you (
flattenandcountbeing the first two) and the new array types, Python front-end, and Numba implementation to me. That’s completely negotiable.If you’re wondering where to get started, it’s this one (issue #51), which we discussed before. Looking ahead to operations like the reducers in #69 has consequences for how negative
axisshould be interpreted, so it would be good to read ahead about what’s coming.No problem, I’ll start with a clean area.