tess

Results 80 issues of tess

Update `ak.ArrayView` indexing to be able to do everything shown in the [numpy basic indexing tutorial](https://numpy.org/doc/stable/user/basics.indexing.html). We currently only handle integer array indexing and a mix of ints and slices...

enhancement
In Progress

A lot of the code imported from `akutil` needs `@typechecking` - [ ] `util` - [ ] `series` - [ ] `index` - [ ] `dataframe` - [ ] `row`...

good first issue

We've had some recent issues with server crashes. This issue is to track our efforts to improve the server stability As far as I know the primary areas to work...

bug
enhancement

This issue contains the requested functionality previously captured in Issue #846 that was not addressed by PR #1330 * Separate grouping and sorting semantics * `argsort` and `coargsort` should actually...

enhancement

Came up in PR #1726 The numpy `sqrt` and `power` functions have a `where` argument, so we should to in order to match their API. There is some question on...

good first issue

During the [arkouda weekly call](https://github.com/Bears-R-Us/ArkoudaWeeklyCall), it was expressed that we need documentation for more advanced contributions to arkouda (beyond the [how to add a new command-message](https://github.com/Bears-R-Us/arkouda/wiki/How-To:-Add-a-new-command-message-in-Arkouda)) In particular @zhihuidu is...

Doc enhancement

Part of #1335 Add [Advanced Indexing](https://numpy.org/doc/stable/user/basics.indexing.html#advanced-indexing) to `ArrayView` and handle the special case when [mixing advanced and basic indexing](https://towardsdatascience.com/numpy-indexing-explained-c376abb2440d) with non-consecutive advanced coordinates

In Progress

The `sorted` method in `dataframe.py` overrides the python builtin `sorted` (the one actually referenced in the doc string) https://github.com/Bears-R-Us/arkouda/blob/42ac6fbf838de7de9d3149ba9458096fff4cd428/arkouda/dataframe.py#L1849-L1852 It's worth noting this will not actually affect the users (since...

question

A user ran into an error when reading a list of lists (should be read in as segarray) from a parquet file. The error was an `unexpect end of stream`...

bug
File IO

This PR (closes #3054) adds the ability to write chunks of data when writing csv files that would cause us to run out of memory when using the new optimizatioin....