tess
tess
My first implementation of `DataFrame.corr` doesn't take advantage of the symmetric nature of the correlation matrix, it just applies `corr` between every combination of columns using nested loops. I'll demonstrate...
Right now this is being caught on the client side and results in a `ValueError`, but with the safeguarding removed something like the below will result in the server hanging....
We've seen signal 11 failures happen on `UnitTestParquetCpp` for those with `arm64` architecture (verified by those on the team with apple silicon). But we're now seeing the same failure with...
Part of #1338 Very basic iteration, all we do here is wrap the parameters for `RadixSortCore` into a record and pass them in I think eventually we want to allocate...
Part of a question in #1623 There are places in `BinOp.chpl` where we cast before doing an operation in order to support type combos that chapel doesn't natively. But there...
Add the ability to cast scalars as arkouda dtypes. This will just be alias of the same functionality in numpy since our dtypes are an alias of numpy dtypes ```python...
Capturing conversation in #1146: The `else` block in `read_all` builds `nonexistent` with any datasets in `datasets` which can't be found and raises a`ValueError` https://github.com/Bears-R-Us/arkouda/blob/883d7010ebd6464751c6e948f2914c48125d7fda/arkouda/pdarrayIO.py#L284-L294 It look like since L289-290 should...
Related to a question from #1477, should we add the ability for `key` to be an `Index` in `Series.locate`? It should be a simple fix if we want it, i...
We wanted #1330 in this release if possible and none of my PR feedback was showstopping, so we went ahead and merged to give a few nights of testing. I...
For the `setops.py` benchmark I think that sampling with `N = 10**4` might be too low to expect the intersection to be non-empty for check correctness https://github.com/Bears-R-Us/arkouda/blob/3ffadffbd7303fc1a88c00479af5d683a8796783/benchmarks/setops.py#L68-L74 Let's assume there's...