Lindsey Gray

Results 29 issues of Lindsey Gray

**Аbstract** Not related to a problem but more thinking about the various levels of security that can be offered in a blockchain when you control the node. I would like...

feature

Often when displaying scale-factor or other 2D ratio plots it is useful to overlay a colored z-axis with text of histogram central values and errors to concisely convey information. It...

enhancement

This is related to https://github.com/dask/dask/pull/10918 In particular with https://github.com/dask/dask/pull/10883 even those changes don't fix everything. This at least makes it so that only shape is touched in the present error...

This is an unverified bug, so really more just startling behavior that I would like to understand. Unfortunately the reproducer from this is high energy physicist analysis code and I...

bug
needs reproducer

```python3 >>> dis.hasjrel Traceback (most recent call last): File "", line 1, in AttributeError: module 'dis' has no attribute 'hasjrel' ``` In particular this causes problems with using llvmlite/numba in...

```python3 import uproot import dask_awkward as dak if __name__ == "__main__": events = uproot.dask( {"./nano_dy.root": "Events"}, open_files=False, ) print(dak.necessary_columns(events.MET_pt)) ``` with dask 2024.2.0 results in (essentially reading the whole file...):...

bug

When the unoptimized task graph size starts to approach a few thousand layers (which is typical in end-stage physics analysis), generating the task graph can take a few seconds. Typical...

Tests with this sort of syntax were passing until dask-awkward 2023.11.0. @agoose77 @douglasdavis ```python3 import numpy as np import uproot events = uproot.dask("https://github.com/CoffeaTeam/coffea/raw/master/tests/samples/nano_dy.root:Events") np.all(events.Muon_pt > 30) ``` it now fails...

It will be the case that HEP analyses are going to join small columns of privately produced data with a larger central set. This is not yet possible in dask_awkward...

As suggested by @martindurant in #235 - dak.singletons - https://github.com/scikit-hep/awkward/issues/2416 - dak.full_like - https://github.com/dask-contrib/dask-awkward/pull/240 - dak.isclose - https://github.com/dask-contrib/dask-awkward/pull/241 - dak.run_lengths - https://github.com/dask-contrib/dask-awkward/pull/242 - dak.unflatten - https://github.com/dask-contrib/dask-awkward/blob/main/src/dask_awkward/lib/structure.py#L795-L803 - dak.where - https://github.com/dask-contrib/dask-awkward/blob/main/src/dask_awkward/lib/structure.py#L833...