Maxime Liquet
Maxime Liquet
Image/QuadMesh elements don't seem to be correctly projected latitude-wise, at least in the example below that creates a uniform lat/lon grid whose latitude centers are (-40, -30, ..., 40). The...
Interactive: using `.pipe`/`.apply` in a pipeline triggers the piped/applied function too many times
Using the Pandas `.pipe` method to transform a DataFrame in a pipeline triggers the piped function more times than it should, as demonstrated by the example below: ```python import hvplot.pandas...
The hvPlotExplorer only offers the `alpha` styling option. More options should be made available, that depend on the plot kind and on the plotting backend. Because there are so many...
Interactive has a `max_rows` parameter that should be passed down to the `pn.pane.DataFrame` object created when the output of a pipeline is a dataframe. This parameter was not passed down...
For some reason the CI would not even start running on https://github.com/holoviz/hvplot/pull/705.
In https://github.com/holoviz/hvplot/pull/495 support was added for `rasterize` and `datashade` of the off-diagonal elements of a scatter matrix plot. Scatter matrix plots should also support the combination of `datashade=True` and the...
```python import xarray as xr ds = xr.tutorial.scatter_example_dataset() ds['A'] = ds['A'] + 1000 ds.hvplot() ``` Is this supported or it just actually happens to work? If it's supported the xlabel...
I can't declare the column I want to use to color (`c=`) the points of a scatter plot with `hv.dim()`. Note that it's working well for the size (not shown...
When an image has sliders, moving the sliders when zoomed in resets the zoom to the initial view. ```python import xarray as xr import holoviews as hv import hvplot.xarray ds...
```python import xarray as xr import hvplot.xarray # v0.7.3 airtemps = xr.tutorial.open_dataset("air_temperature") air = airtemps.air # 3D DataArray air.isel(time=0).hvplot() # runs fine and returns an Image plot air.isel(lat=0).hvplot() # raises...