How can I open the interactive matplotlib window in IPython notebook?

后端 未结 7 1921
臣服心动
臣服心动 2020-11-30 17:30

I am using IPython with --pylab=inline and would sometimes like to quickly switch to the interactive, zoomable matplotlib GUI for viewing plots (the one that po

7条回答
  •  醉梦人生
    2020-11-30 18:24

    A better solution for your problem might be the Charts library. It enables you to use the excellent Highcharts javascript library to make beautiful and interactive plots. Highcharts uses the HTML svg tag so all your charts are actually vector images.

    Some features:

    • Vector plots which you can download in .png, .jpg and .svg formats so you will never run into resolution problems
    • Interactive charts (zoom, slide, hover over points, ...)
    • Usable in an IPython notebook
    • Explore hundreds of data structures at the same time using the asynchronous plotting capabilities.

    Disclaimer: I'm the developer of the library

提交回复
热议问题