- Notifications
You must be signed in to change notification settings - Fork441
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 calledBokeh, an open-source project led by Continuum Analytics (the wonderful folks that makeAnaconda), 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 likebode()
andnyquist()
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?