Jean-Luc Stevens
Jean-Luc Stevens
This step was commented out to get the `ship_traffic` project built. Presumably it did something important and useful so this PR is here to re-enable it.
This is needed for instance in the updated attractors project which now refers to a `.py` file in the project. For relative links to work to these assets, the project...
One general problem when building custom bokeh tools (e.g poly edit tools and similar) is that it can be hard to discover the set of modifier keys used by the...
This currently works with a list: ```python import numpy as np x = np.arange(0, 3) y = np.arange(5, 8) a = np.array([[np.nan, np.nan, 1], [np.nan] * 3, [np.nan] * 3])...
Presumably this needs to be fixed in `spread`. ```python import pandas as pd from holoviews.operation.datashader import dynspread df = pd.DataFrame({'x':[-16.8, 7.3], 'y': [-0.42, 13.6], 'language':['Marathi', 'Luganda']}) points = hv.Points(df, ['x','y'],...
Currently param updates class docstrings to help with tab completion. I think this behavior is useful (and can be disabled by setting the `docstring_signature` variable to `False` but it might...
I don't know when this might come up in a real application, but I don't think the watching mechanism is currently hooked up to work with dynamic parameters (e.g numbergen)....
There are a few warts in how `script_repr` works that I think are due to its history starting with where it started in Topographica. * Firstly, the only example of...
Now that HoloViews supports [twin axes](https://holoviews.org/user_guide/Customizing_Plots.html#twin-axes) it might be worth considering adding an API at the hvplot level. Of course, you could always build an overlay with `*` and use...
Updates the project to match the AE5 version. Fixes the legends and adds instant inspection although this approach is somewhat ugly.