matplotlib now completely broken with hvplot
See original GitHub issueIt used to work for the most part
import xarray as xr
import hvplot.xarray
import holoviews as hv
hv.extension('matplotlib')
ds = xr.tutorial.open_dataset('air_temperature').isel(lat=0, lon=0)
ds.hvplot('lon', 'lat')
But now it errors out:
ValueError: Unexpected option 'height' for Curve type when using the 'matplotlib' extension. No similar options founds.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:10 (6 by maintainers)
Top Results From Across the Web
Gridded Data — hvPlot 0.8.2 documentation
hvPlot provides one API to explore data of many different types. Previous sections have exclusively worked with tabular data stored in pandas (or...
Read more >Output type is currently not supported when using pycharm ...
When I try to plot data with hvplot, I get an error saying "Output type ... always put full error message (starting at...
Read more >Applying Customizations — HoloViews v1.15.3
And now we display the curve and a spikes elements together in a layout as we ... Path will tab complete bokeh keywords,...
Read more >Plotting — HoloViz 0.15.1 documentation
plot API. Static or interactive output in Jupyter notebooks. hvPlot – Bokeh/Matplotlib/Plotly-based HoloViews plots for Pandas, GeoPandas, xarray, Dask ...
Read more >Python Data Visualization 2018: Why So Many Libraries?
The InfoVis libraries can be further broken down into numerous ... into completely new plot types from within Python (as for Bokeh).
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
hvPlot now supports Matplotlib as an additional backend.
Just to be clear, Matplotlib is fully supported by HoloViews and by Panel; it’s simply not supported by hvPlot. hvPlot is an alternative API for HoloViews that maps from options specified into a certain form that was defined by Pandas into HoloViews options for the Bokeh backend. We can do the same sort of mapping for any other backend, but currently have neither funding nor volunteers for doing that. So we do not support Matplotlib for hvPlot currently, but that could change if we get either funding or a volunteer to work with us to do that mapping.