Python实现在matplotlib中两个坐标轴之间画一条直线光标的方法
作者:网海水手
这篇文章主要介绍了Python实现在matplotlib中两个坐标轴之间画一条直线光标的方法,涉及Python操作matplotlib模块绘图的相关技巧,需要的朋友可以参考下
本文实例讲述了Python实现在matplotlib中两个坐标轴之间画一条直线光标的方法。分享给大家供大家参考。具体如下:
看看下面的例子和效果吧
# -*- coding: utf-8 -*- from matplotlib.widgets import MultiCursor from pylab import figure, show, np t = np.arange(0.0, 2.0, 0.01) s1 = np.sin(2*np.pi*t) s2 = np.sin(4*np.pi*t) fig = figure() ax1 = fig.add_subplot(211) ax1.plot(t, s1) ax2 = fig.add_subplot(212, sharex=ax1) ax2.plot(t, s2) multi = MultiCursor(fig.canvas,(ax1,ax2),color='r',lw=1) show()
下面是图形效果,看随着光标的移动,在两个图之间会画一条竖线
这个功能有时还是比较有用的
希望本文所述对大家的Python程序设计有所帮助。
您可能感兴趣的文章:
- python 如何在 Matplotlib 中绘制垂直线
- python matplotlib拟合直线的实现
- Python+matplotlib实现简单曲线的绘制
- Python matplotlib 绘制双Y轴曲线图的示例代码
- Python matplotlib绘制图形实例(包括点,曲线,注释和箭头)
- 教你利用python的matplotlib(pyplot)绘制折线图和柱状图
- Python matplotlib实现折线图的绘制
- python数据可视化之matplotlib.pyplot基础以及折线图
- python学习之使用Matplotlib画实时的动态折线图的示例代码
- python Matplotlib绘图直线,折线,曲线