2021
01-08
01-08
matplotlib绘制鼠标的十字光标的实现(内置方式)
相对于echarts等基于JavaScript的图表库,matplotlib的交互能力相对较差。在实际应用中,我们经常想使用十字光标来定位数据坐标,matplotlib内置提供支持。官方示例matplotlib提供了官方示例https://matplotlib.org/gallery/widgets/cursor.htmlfrommatplotlib.widgetsimportCursorimportnumpyasnpimportmatplotlib.pyplotasplt#Fixingrandomstateforreproducibilitynp.random.seed(19680801)fig=plt.figure(figsi...
继续阅读 >