Iason Krommydas
Iason Krommydas
I think it's more logical to automatically install pip in the newly created environments by `uv venv` so that the user can immediately have access to pip within the new...
Something missing from pip is the ability to do `upgrade --all` like conda can do `update --all` in an environment. Wrappers around pip that do this are oftentimes slow because...
Very often in plots, we combine different data taking periods together. Therefore we should be able to specify lists of lumis, years and coms of the same length together and...
Early PR to add double-sided Gaussian with exponential tails PDF and `CBExGauss` factory ## Proposed Changes - add double-sided Gaussian with exponential tails PDF and factory to construct `CBExGauss` PDF...
I'm starting an early PR to add statistical tests to histograms after this feature was requested in https://github.com/scikit-hep/hist/issues/500 and I actually believe it is a good and useful feature. This...
Adding a `loc` type parameter to the Gamma distribution like [scipy has](https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.gamma.html) would be beneficial. It is relatively common in physcs for people to use the Gamma distribution and data...
To reproduce: ```python import dask_awkward as dak from coffea.nanoevents import NanoEventsFactory events = NanoEventsFactory.from_root({"https://github.com/CoffeaTeam/coffea/raw/master/tests/samples/nano_dy.root": "Events"}).events() tnp = dak.combinations(events.Electron, 2, fields=["tag", "probe"]) pnt = dak.combinations(events.Electron, 2, fields=["probe", "tag"]) zcands = dak.concatenate([tnp,...
To reproduce: ```python import uproot file = uproot.recreate("root://cmseos.fnal.gov//store/user/ikrommyd/test/dummy.root") file["tree"] = {"branch": [1,2,3]} file.close() ``` fails with: ``` OSError Traceback (most recent call last) Cell In[2], line 1 ----> 1 uproot.recreate("root://cmseos.fnal.gov//store/user/ikrommyd/test/dummy.root")...
Something like this to reproduce: ```python import pickle import fsspec with fsspec.open("simplecache::root://cmseos.fnal.gov//store/user/ikrommyd/dummy/dummy.pkl", "wb") as f: d = {"1": 1, "2": 2} pickle.dump(d, f) ``` fails with: ``` --------------------------------------------------------------------------- NotImplementedError Traceback...
### Vector Version 1.4.1 ### Python Version 3.11 ### OS / Environment macOS but doesn't matter ### Describe the bug Currently in coffea if you do ```python from coffea.nanoevents import...