Maxime Liquet
Maxime Liquet
HoloViews is going to better support Pandas indexes in https://github.com/holoviz/holoviews/pull/6061 so it doesn't have to internally call `.reset_index()` when a reference is made to an index column. This change will...
The `tiles` parameter should support [xyzservices.TileProvider](https://xyzservices.readthedocs.io/en/stable/api.html#xyzservices.TileProvider), like [GeoPandas does](https://geopandas.org/en/stable/docs/reference/api/geopandas.GeoSeries.explore.html#geopandas.GeoSeries.explore) and because it offers more options and it'll be easier to document.
Reviewing https://github.com/holoviz/hvplot/pull/1256 made me realize that the explorer doesn't support selecting the variables of an xarray Dataset, it seems to be picking up the first variable available (`air` in the...
The file is the first made available on this website https://www.unidata.ucar.edu/software/netcdf/examples/files.html. I attached it to the issue: [sresa1b_ncar_ccsm3-example.nc.zip](https://github.com/holoviz/hvplot/files/14138040/sresa1b_ncar_ccsm3-example.nc.zip) ```python import hvplot.xarray import xarray as xr ds = xr.open_dataset("sresa1b_ncar_ccsm3-example.nc") ds.hvplot.explorer() ```...
The thumbnails in the gallery are mostly generated on the fly by `nbsite`. While this is useful to make sure they are in sync with the notebook output and it's...
Customizing the data displayed on hover is a pretty request frequent (e.g. https://github.com/holoviz/hvplot/issues/1206, https://github.com/holoviz/hvplot/issues/414, and more, in particular on Discourse), Bokeh's HoverTool should be documented.
This is certainly going to be a tedious task, but the minimum pins of the packages hvPlot directly depends on (e.g. Panel, HoloViews) and optionally depends on (e.g. GeoViews, Datashader)...
I noticed this bug while doing some debugging today.
hvPlot's test suite needs a bit of love ❤️ - [ ] Move to pytest kind of tests over unittest when possible - [ ] Rename test files to `test_xxx.py`...
Document `rasterize=True` together with `by`, following the support added in https://github.com/holoviz/hvplot/pull/1132. This was not documented at the time as HoloViews wasn't yet released with the feature.