I am trying to follow this example notebook, specifically the plotting section where it plots the x,y grid and loops/scrolls through the time dimension.
ds.air.interactive.sel(time=pnw.DiscreteSlider).plot()
I'm running into two issues. The first is, I'd like to run this code in the Spyder IDE, which does not support the inline widgets. Based on a few other questions I've found here, the solution seems to be to have the interactive widget render in a browser window. I've looked around a few spots, like this question, but I can't seem to find anything that works with the hvplot.xarray.XArrayInteractive
objects that are created here. So my first question is how to get these to render in a browser window.
My second question is how to save these loops as an html file that can be opened later. I've tried using the tutorial here, but when I try to save it, I get the following error.
ValueError: HoloViews pane does not support objects of type 'XArrayInteractive'.
It seems like in both cases, using this "XArrayInteractive" type might be causing the issue. I am not locked into using this method, if there is another way to make the loops I want, I am open to that.
Thanks