Simon Høxbro Hansen

Results 143 comments of Simon Høxbro Hansen

This is more of a user question and would be better to ask on [Discourse](https://discourse.holoviz.org/). The main problem is that you need to convert the Graph to a Holoviews object,...

Looking at holoviews code of `hv.Area` I can see it uses `patch` and not `varea`. `patch` shows the same problem as seen with `hv.Area`. ``` python import holoviews as hv...

You shouldn't use the variable `name` as it is reserved. A more in-depth description is given [here](https://discourse.holoviz.org/t/creating-an-optional-datetime-parameter-using-param/3147/10), which I have copied below. > 4. name is the one Parameter that...

I think this behavior is related to `_Undefined`. If I set `param.parameterized._Undefined = None` at the start of the script, it doesn't call the `cb` function. code ``` python import...

Just saw that Github can now ignore commits, which could be relevant if a big reformat is done. https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view

`gv.Polygons` defaults to `PlateCarree`, which is why both of those examples give an `IndexError`. `hvplot` without any inputs works because it only outputs an Holoviews plot. If you set `geo=True`...

This error can occur with the current implementation for coordinates close to the bounds but still inside the bounds. Code used for the examples ``` python import xarray as xr...

This will now return this error message: ``` python da = xr.DataArray(np.arange(10000).reshape(100,100), coords=dict(x=t + np.linspace(166021, 166021 + 3000, 100), y=t + np.linspace(-3000, -15, 100))) crs = ccrs.epsg(32635) gv.Image(da, crs=crs)# *...

Fixed downstream by https://github.com/holoviz/hvplot/pull/850

The SVG created by shapely doesn't show up in the notebook. It seems to be related to Jupyter as far as I can see: If I open the saved file...