Description
I find IPython notebooks a great way to work interactively, and it would be nice if inline plots could be interactive (e.g., letting you zoom, or having tool tips show more information). With matplotlib, though, inline plots are just images, so they cannot be interactive.
There's a new plotting library called Bokeh, an open-source project led by Continuum Analytics (the wonderful folks that make Anaconda), that looks really nice for making interactive plots like this. I'd like to try making an alternate backend one could specify with, say, control.set_backend("bokeh")
that would make commands like bode()
and nyquist()
generate plots using Bokeh. The default could still be matplotlib, of course.
Any thoughts or suggestions for other libraries that might be useful for making interactive plots?