Jean-Luc Stevens
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...
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...
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...
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...
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...
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...
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':...
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...
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...