-
#148 seems to no longer preserve the order of fields after `compute` (the exact file here is ):
```python
>>> import uproot
>>> u = uproot.dask('scalars_tree_file.root')
>>> u.fields
['int_bran…
-
For example:
```python
>>> import awkward as ak, dask_awkward as dak
>>> a = ak.Array([[], [3, 1, 2]])
>>> da = dak.from_awkward(a, 1)
>>> dak.argsort(da).compute()
>>> da[dak.argsort(da)]
…
-
A trivial example (running on `main` of both `awkward` and `dask-awkward`):
```python
>>> import awkward as ak, dask_awkward as dak
>>> a = ak.Array([[1]])
>>> da = dak.from_awkward(a, 1)
>>> s…
-
Given https://github.com/ssl-hep/ServiceX/pull/486#pullrequestreview-1161522843 it would be useful for testing purposes of IRIS-HEP's ServiceX to have `https://xrootd-local.unl.edu:1094//store/user/AG…
-
Execute IRIS-HEP soft-launch event showcasing tools and workflows planned to be used for AGC. The event will feature interactive notebook talks to introduce tools and interfaces. It will start with a …
-
### What's the problem this feature will solve?
When developers define a `setup.cfg` file instead of the _classic_ `setup.py` file for setting the metadata for their packages, they have a small set…
-
https://github.com/iris-hep/func_adl_xaod/blob/ae21a993c616307122798dc7091d5adc9e5648f7/func_adl_xAOD/backend/xAODlib/EventCollections.py#L124-L125
When running against things like the xAOD, there is…
-
Demonstrate a `ServiceX` -> `coffea` -> `cabinetry` -> `pyhf` pipeline on coffea-casa. This can be done by extending the ATLAS Open Data H>ZZ* example developed in [stormsomething/CoffeaHZZAnalysis](h…
-
Add link to your IRIS-HEP Fellowship final presentation to the README file
[](https://indico.cern.ch/event/1195270/contributions/5043771/attachments/2508513/4311003/Zijun_Wang_IRIS-HEP_Presentation…
-
I'm not exactly sure if the problem here is in Uproot, Awkward Array, or `dask-awkward`. The file I'm using here is , though I assume this isn't file specific.
```python
>>> import uproot, awkward…