Maxime Liquet

Results 828 comments of Maxime Liquet

There will be at some point an effort to homogenize the menus across HoloViz' sites.

I think the situation has improved with the new page but the Bokeh plots are still not responsive, so I'm keeping this issue opened.

Duplicate of https://github.com/holoviz/param/issues/939 which I'm closing in favor of this issue as Jim answered here.

I'm not sure what the right solution is for the Panel issue reported here. I think however that adding debouncing to Param could be a good fit as Param supports...

Ideally, this would need to be supported for both `dynamic=True` and `dynamic=False`. For the latter, in practice it seems that the values get sorted in most cases as `HoloMap` (the...

> Though, this need to be updated in Panel, example of code: Hm that'd work but I'm not sure how HoloViews would then let users toggle the sorting behavior. When...

Well, Pandas and Polars DataFrames have pretty different APIs. So how useful is a `DataFrame` parameter if in the code I have to add `if isinstance(self.df, pd.DataFrame): ... elif isinstance(self.df,...

If we want to have a single `DataFrame` parameter without breaking backwards compatibility, we can do the kind of usual migration: - First, allow users to opt in to the...

Hi @raybellwaves, Sorry for the late reply. Another way to avoid the error is to specify that you want an *image* using hvPlot's API: ```python xr.DataArray(np.ones((2, 2))).hvplot.image() ``` I think...