-
-
Notifications
You must be signed in to change notification settings - Fork 114
Closed
Description
Xarray is in the process of adding entrypoints for plotting backends in pydata/xarray#3640. I took a look at #319 which added entrypoint support for Pandas, and I noticed that .plot method is for Tabular data only:
hvplot/hvplot/plotting/__init__.py
Lines 12 to 14 in a405ae7
| @with_hv_extension | |
| def plot(data, kind, **kwargs): | |
| # drop reuse_plot |
hvplot/hvplot/plotting/__init__.py
Lines 32 to 33 in a405ae7
| return hvPlotTabular(data)(kind=kind, **no_none_kwargs) |
What's the right path to adding the entrypoint for Xarray in hvplot? Should the .plot method in hvplot/plotting/__init__.py be
extended/generalized in order to return instances of hvPlot class instead of hvPlotTabular?
With some guidance, I am happy to submit a PR that addresses this issue 😃
Metadata
Metadata
Assignees
Labels
No labels