Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

The reason it errors is that `value_label='value'`, which will then do something similar to this: ``` python import holoviews as hv hv.extension("bokeh") value_label = "value" vdims = "reference" hv.Curve(df, "numerical",...

This is fixed on master with https://github.com/holoviz/geoviews/pull/570. ![image](https://user-images.githubusercontent.com/19758978/187060881-ca0c6835-e24a-43a9-9d6d-5ee41aaeed6d.png) But it is annoying, so a new release (patch?) release could be made to fix it.

I have updated your comment to link to the original issues; see Development on the side: ![image](https://user-images.githubusercontent.com/19758978/187144598-82df58ff-e062-43a8-89dc-b14b38e0d4bc.png) If you end up not fixing an issue, you should remove the `Fixes`...

Two things that might work: 1) Run `air2d.hvplot.image(data_aspect=True)` 2) Manipulate the `frame_width` / `frame_height` to match the ratio of data_aspect. ``` python frame_height = 300 data_aspect = 1 ratio =...

> It certainly shouldn't be as difficult as in @Hoxbro 's approach, though! I agree. My second approach is too complicated. But isn't the first proposal pretty straightforward, e.g. adding...

It could be related to https://github.com/holoviz/panel/issues/3767

I will just add the invalid URL to `SKIP_URLS`. It is "only" metadata, and I feel it is more correct to have the site on which the data was downloaded...

I would change the test_links.py to the following. Even though it is nice with the fixtures, I think we should run all URLs in one go. This can both be...

Just to note, there is no _programmatic_ way to reset your filters. Functionality like `pipeline.reset_filters()` could be nice to have.

By using the first environment on Windows and adding `import panel as pn` to a startup file, I get the same no response when running in Jupyter Lab. If I...