Illviljan

Results 35 issues of Illviljan

For some masking operations it's very easy to figure out the shape of the array: ```python import dask.array as da a = da.arange(0, 10) # shape=(10,): m = da.ones(10, dtype=bool)...

array
enhancement

It's common for downstream packages to force inputs to numpy-likes using `np.asarray`, `np.asanyarray` etc. These have a `like` argument to handle duckarrays, it would be nice if pint handled these...

Add a benchmarking ci, it will run if `run-benchmark` label is set. - [x] Closes #231 Inspired by: * https://labs.quansight.org/blog/2021/08/github-actions-benchmarks/ * https://github.com/pydata/xarray/pull/5796 * https://github.com/scikit-image/scikit-image/pull/5424

When I've been reading articles about change points there's a lot of discussions about performance. But I don't see a lot of benchmarks here in `ruptures`. I suggest to use...

Splitting up #5622 as the scope of it has grown too large now. * Adds support for dataarray scatter plots and replaces the dataset version. * Scatter now has 3d...

topic-plotting

### Is your feature request related to a problem? I was making sure the test in #6832 failed on main, when it did I wrote a few lines in the...

enhancement
CI
plan to close

- [ ] Requires #4820 - [ ] Tests added - [ ] Passes `pre-commit run --all-files` - [ ] User visible changes (including notable bug fixes) are documented in...

topic-plotting

Cache some small properties that are rather slow to calculate but doesn't change that often. Questions that needs to be resolved: - [ ] Can these properties change during the...

needs discussion
run-benchmark

I accidentally removed a Base Type line and wanted to undo it. That didn't work. Does not work for other lines and blocks either.

enhancement

I find grouping data can be a little more intuitive when using tolerances. This can be done for example like this: ```python def groupby_isclose_argsort(arr, atol=0, rtol=0.1): """ Return a group...

documentation