You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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 😃
The text was updated successfully, but these errors were encountered:
Thanks for working on this! Very happy to see it. I think we'll probably want a separate plot method just for xarray. I'm not entirely sure how to structure that yet. @jsignell do you have any good ideas?
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
hvplot/hvplot/plotting/__init__.py
Lines 32 to 33 in a405ae7
What's the right path to adding the entrypoint for Xarray in hvplot? Should the
.plot
method inhvplot/plotting/__init__.py
beextended/generalized in order to return instances of
hvPlot
class instead ofhvPlotTabular
?With some guidance, I am happy to submit a PR that addresses this issue 😃
The text was updated successfully, but these errors were encountered: