Jared Lumpe

Results 38 issues of Jared Lumpe

It would be nice if there was a function to sort rows by some function of an entire `DataFrameRow` instead of by individual column values. An example implementation would be:...

feature

I initially named this recipe `hesslab-gambit` to differentiate it from another package named `gambit` on PyPI. However the prefix `hesslab-` was really only something that applied in the earlier days...

What is the policy on renaming existing packages/recipes? I initially named the package for my tool [GAMBIT](github.com/jlumpe/gambit) `hesslab-gambit`, with the `hesslab-` prefix added to differentiate it from a package named...

Is it possible to extend a `Converter` instance, i.e. make a copy and define new or override old hooks? This would be an extremely useful feature, but I couldn't find...

enhancement

We have `hex(::Colorant)`, but it would be nice to have functions to convert colors to the other formats accepted by `parse`, specifically CSS's `rgb(...)`, `rgba(...)`, and `hsl(...)`.

enhancement
help wanted

I find I frequently mix up `derivative()`, `gradient()` and `jacobian()`, especially when I'm debugging and testing several different functions and I forget to switch to the correct one. If I...

I'm trying to keep the code style consistent in my PRs but it seems to vary a lot in each file. It would be nice to have an `.editorconfig` file...

A while ago I filed a [PR](#233) to allow `ODEFunction` to be called with both in-place and out-of-place signatures regardless of whether the actual wrapped function is in place. This...

The solvers support an `isoutofdomain` callback argument that checks whether a point in state space is in the function's domain. It seems like this is an intrinsic attribute of the...

I'm observing some strange behavior whenever I set the value of an existing attribute in `AGraph.edge_attr`. Here is a quick example: ```python3 from pygraphviz import AGraph ag = AGraph() ag.add_edges_from([...