Typically if I want to make an interactive plot, I use %matplotlib qt, such that I can explore, zoom, add to the figure etc. I wanted to make an area plot, and with the release of seaborn objects, this is easy. Only, it always plots "inline" in my console (spyder), which I find really user-unfriendly as compared with the interactive plotting I normally do (with the normal seaborn plots which are built on matplotlib, there is no problem). Is there anyone who knows a solution for this?
fig, ax = plt.subplots(nrows = 1, ncols = 1, figsize=(15,8))
p = so.Plot(sumstat, "date", "std")
p.add(so.Area())
pto useax. It needs.on(ax). In spyder this works to have an interactive plot appear, however, nothing is plotted into the figure. I think this needs to be addressed by @mwaskom, who is the package author. If seen Duplicate plots are output when using seaborn.objects with subplots in jupyter, but doesn't help.