我正在尝试使用matplotlib创建一个绘图,当悬停悬停在图表的某些元素上时会出现工具提示。我希望在 Jupyter Notebook 中使用python 3。
我试过这里提供的片段:
http://matplotlib.org/examples/event_handling/pick_event_demo.html
Possible to make labels appear when hovering over a point in matplotlib?
Is there a matplotlib equivalent of MATLAB's datacursormode?
Matplotlib basemap: Popup box
但它们都不起作用。情节显示但不是互动的。
我尝试使用和不使用魔法%matplotlib inline
但没有效果。
我当然也修改了没有括号的print语句
是否有特定的命令或后端用于在Jupyter中进行交互?
编辑: 使用mpld3的例子“有效”,但我宁愿坚持使用基本的matplotlib。
答案 0 :(得分:6)
我想你想要%matplotlib notebook
。这将在笔记本中集成交互式图。