tess
tess
Parent issue capturing the work needed to be done to better align arkouda dataframes and pandas dataframes. Feel free to edit this description or drop a comment with more information!...
I noticed some of the rst files in `pydoc/usage` are not included in `pydoc/usage.rst`, so I think these aren't being included in the docs. We should look into this and...
Strip out the array view code. This was never fully implemented, so it's presence will just be confusing for users who think we currently have multi-dimensional array support. The idea...
Overarching issue tracking string groupby performance. The way groupby is implemented relies heavily on `unique` and `LSDRadixSort` - [x] #2873 - [ ] Investigate faster ways of handling radix sort...
Right now we only have an `inner_join` method in arkouda. It feels like we should be able to add a `right_join` especially since we already have `right_align`. I think it...
This issue will track the requirement to compare the performance of arkouda's parquet code to native `C++` this will give us an idea of if any overhead is being added...
A user pointed out an optimization on bigint sorts for use to look into. They suggested we do a first pass on the number of digits. A bigint with fewer...
After attending the chapel team's tutorial, i thought of some sections of our tutorial that could use shoring up. This would be good to do before the new arkouda-devs come...
Users have noticed that parquet write times can be wildly inconsistent, like a few seconds or a few minutes for the same type of write task User provided summary of...
Clean up the bigint code a bit. In particular there are some temporaries that can be eliminated due to me trying to avoid me writing directly into the array part...