美文网首页
matplotlib 次坐标轴

matplotlib 次坐标轴

作者: Do_More | 来源:发表于2017-07-19 21:25 被阅读0次
    image.png
    import matplotlib.pyplot as plt
    import numpy as np
    
    x = np.arange(0,10,0.1)
    y1 = 0.05 * x**2
    y2 = -1*y1
    
    fig,ax1 = plt.subplots()
    ax2 = ax1.twinx()
    ax1.plot(x,y1,'g-')
    ax2.plot(x,y2,'b--')
    
    ax1.set_xlabel('X data')
    ax1.set_ylabel('Y1',color='g')
    ax2.set_ylabel('Y2',color='b')
    
    plt.show()
    

    相关文章

      网友评论

          本文标题:matplotlib 次坐标轴

          本文链接:https://www.haomeiwen.com/subject/brsrkxtx.html