Jean-Luc Stevens

Results 62 issues of Jean-Luc Stevens

This issue is from feedback from a user in the 2021 SciPy tutorial (I could not reproduce myself but I did walk the user through the steps carefully to confirm...

TRIAGE

While working on https://github.com/pyviz-topics/examples/pull/145 I found that the output of `anaconda-project lock` has changed since version 0.8.2 given the same `anaconda-project.yml`. If you use 0.8.2 the `test` environment in the...

TRIAGE

When working with `environment.yml`, the following syntax is supported that conveniently combines channel and package information: ``` dependencies: - conda-forge::altair - conda-forge::plotly ``` When testing this type of specification with...

Twin axes is an often requested feature (e.g. see #396, #1594, #3011) and HoloViews should support this type of plot without having to resort to ugly custom hooks. In this...

type: feature

This issues continues from #2276 after commenting out the sampling exception described in that issue. This much is the same as before: ```python import time import datetime import numpy as...

type: bug
tag: backend: bokeh

In particular, the way the default path is validated may break on windows. The issue comes down to this bit of [code](https://github.com/ioam/param/blob/master/param/__init__.py#L1393): ```python def update(self): self.objects = sorted(glob.glob(self.path)) if self.default...

type-bug
component: type/value stuff

One of the major goals of param is to apply type validation and it does this well for Python literals. When it comes to callable objects, param is very lenient...

type-feature
status: discussion
component: type/value stuff

Surely, `ParamOverrides` shouldn't be allow this? ``` python import param class Foo(param.ParameterizedFunction): a = param.String('bar') b = param.Boolean() def __call__(self, **params): print param.ParamOverrides(self,params) ``` ``` python >>> Foo(a=slice, b=3) {'a':...

type-bug
component: type/value stuff

Given a DataArray called ``data`` that looks like this: ``` dask.array Coordinates: band int64 1 * y (y) float64 4.426e+06 4.426e+06 4.426e+06 4.426e+06 4.426e+06 ... * x (x) float64 2.433e+05...

type: bug
tag: projection

The promise of `hvplot`'s `.interactive` API is that you can use the same API as pandas/xarray with widgets and so on. It would be useful if `.interactive` could be used...