Maxime Liquet
Maxime Liquet
Closes https://github.com/holoviz/param/issues/999 There are probably fancier ways to implement that but I think that will do the job.
I had completely forgotten param provided the `%params` line magic for IPython.  `%params` is not documented on the website. I'm in favor of deprecating it, although there's a catch....
We recently archived [autover](https://github.com/holoviz-dev/autover) but I completely forgot the implementation actually used across HoloViz lives is in `param/version.py`. A few packages still depend on it but I don't see that...
I'm not super happy with how the API doc is generated: - It feels brittle (see https://github.com/holoviz/param/pull/989) - It generates tons of warnings - The content in the left sidebar...
Serializing as YAML the `objects` attribute of a `Selector` Parameter, which under the hood is a `ListProxy` object (from Param), doesn't serialize a standard list or dict but the custom...
Resolves https://github.com/holoviz/hvplot/issues/1211 This PR introduces the `selector` option that exposes the similarly named `selector` parameter of HoloViews `rasterize` and `datashade` operations (released in HoloViews 1.21), that once set to a...
@Azaya89 found out when documenting the options that `hover_formatters` wasn't useful. @Azaya89 can you please confirm? If so, we should deprecate it.
Recording an issue we found when documenting `aspect`. Very likely a HoloViews issue but I wanted to record it here first before I forget. ```python import hvplot.pandas import hvsampledata df...
xarray displays the `units` *attr* in bracket in the legend title while hvplot displays it on every legend entry. ```python import hvplot.xarray import numpy as np import pandas as pd...
xarray support generating `step` plots from dimensions that consist of array containing [pandas Interval](https://pandas.pydata.org/docs/reference/api/pandas.Interval.html) objects. ```python import hvplot.xarray import numpy as np import pandas as pd import matplotlib.pyplot as plt...