Jim Pivarski

Results 151 issues of Jim Pivarski

### Description of new feature Although Awkward layouts can't be updated in place, high-level `ak.Array` objects are a slightly mutable layer on top of the immutable core. For example, `ak.Array.__setitem__`...

feature

To take advantage of @ManasviGoyal's new "panels" implementation. #1517 was a first attempt at this, but things have moved around. The PR should be refreshed. It does not need to...

cleanup

Hi! This is awesome! In addition to this nice reimplementation of the original Lode Runner game, you've found a lot of level sets from its various incarnations. I used to...

This ZIP contains a ROOT file and a Parquet file. [dak-issue-501.zip](https://github.com/dask-contrib/dask-awkward/files/15043140/dak-issue-501.zip) If we open it with `uproot.dask`, extract one field and compute it, we get what we expect: ```python >>>...

Like scikit-hep/awkward#3084, there's been a request to allow `dask_array += something` by replacing the content of the `dask_array`. For example, ```python >>> import dask_awkward as dak >>> import awkward as...

`dask_awkward.Array` currently has * `__awkward_function__` to dispatch `ak.*` functions to their equivalent `dak.*` functions * `__array_ufunc__` to properly handle NumPy ufuncs via [NEP-13](https://numpy.org/neps/nep-0013-ufunc-overrides.html) (Awkward and dask-awkward equivalents are not explicitly...

enhancement

Examples: `x, y = y, x` incorrectly decompiles to `x = y = y` and `x, y = 1, z` incorrectly decompiles to `x = y = 1`. The fix...

I'm forwarding this Gitter question from @gozmit97 to make sure that it doesn't scroll away without getting answered. It sounds like it could be an issue. ----------------- I'm trying to...

_Copied from @xinyuejohn's issue on scikit-hep/awkward#2931:_ ### Description of new feature Hi, I was creating an awkward array using pandas dataframe and I found awkward doesn't support pandas._libs.missing.NAType() It would...

I decided to just make `UnionArray.simplified` not allow lazy carries. It should always return correct results and it can only have a performance impact on wide RecordArrays that go through...