Simon Høxbro Hansen
Simon Høxbro Hansen
I'm getting a `DeprecationWarning` when this line is run. https://github.com/plotly/plotly.py/blob/00c18fd0d09a21f7d0f54c383ff5258fe1ff7d28/packages/python/plotly/plotly/graph_objs/__init__.py#L272 ``` python DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. ```
_Definitely a WIP_ ### Status / Todo (Not an exhaustive list) - [x] Get `panel serve` to run with a simple script - [x] Get the unit tests to pass...
First noticed here https://github.com/holoviz/holoviews/pull/5398 When `hv.extension()` (or a import of `hvplot`) is done before `pn.extension()` it does not automatic set the current `comms` configuration. | | Colab | vscode |...
When https://github.com/holoviz/colorcet/pull/90 is merged and released, it will remove the DeprecationWarning.
When multiplying two overlays both with `logy=True`, the returned plot will not have the `logy=True` set. I assume this will also be the case with other options. ``` python import...
I find it non-intuitive that interpolation is done by default. An example of this: ``` python import holoviews as hv hv.extension() hv.Scatter((range(4), range(3))) ```  I discussed this with @jlstevens...
#### Is your feature request related to a problem? Please describe. I will like to be able to use `responsive=True`, `data_aspect=True`, and datashader operations. Right now, this raises a `TypeError`....
ipywidgets version 8.0 no longer uses `_ipython_display_`, giving the following error in a notebook when trying to display a streamz dataframe.:  This PR adds a check for `__repr_mimebundle__` and...
This should be seen as a small (and definitely not exhaustive) step toward working with non-strings columns and `hv.Dimension`. Related to https://github.com/holoviz/holoviews/issues/5353, and with the upcoming change from `DeprecationWarning` to...
#### Description of expected behavior and the observed behavior The following code does not return any plot. The code works if changing `rasterize` to `datashade`. I think this should atleast...