Simon Høxbro Hansen

Results 461 comments of Simon Høxbro Hansen

We could also redirect https://hvplot-test.holoviz.org/docs to the latest for even more compact url.

It seems to work if you use `Overlay` over 'NdOverlay`? ``` python meshes = [ hv.QuadMesh(da.where(da > 0), kdims=["x", "y"], vdims=["D"]).opts(alpha=0.5) for da in samples.values() ] overlay = hv.Overlay(meshes, kdims=["sample"])...

What about this? ![ Screenshot 2024-04-26 15 59 50](https://github.com/holoviz/holoviews/assets/19758978/587cf3ae-650e-4b4c-a6ec-56ce63c7edaf)

We need to update the logic to only register hvplot extensions once, have updated it for some but we should update it for all. ![ Screenshot 2024-06-20 14 44 48](https://github.com/holoviz/hvplot/assets/19758978/bd04a6e7-77b6-439a-951d-447a4005a91c)

It seems the the test `holoviews/tests/core/data/test_narwhalsinterface.py::PandasNarwhalsInterfaceTests::test_dataset_aggregate_string_types_size` broke in https://github.com/narwhals-dev/narwhals/pull/2680 and released in 1.47.0. Haven't looked into where the fault is.

> thanks for flagging, this is a bug in Narwhals, will fix + release Thank you for digging into it. No need to hurry the release for my sake.

Added duckdb and ibis to the test suite, but it doesn't seem to show anything. I need to investigate further. code ``` python from datetime import datetime, timezone import dask.dataframe...

This was caused by `drop_nulls` not being implemented for the Ibis and DuckDB implementations. Calling `hv.render` showed the exception and the location of the problem. Not even sure if we...