matplotlib的学习15-次坐标轴

Posted simon-idea

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib的学习15-次坐标轴相关的知识,希望对你有一定的参考价值。

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() #获取figure默认的坐标系 ax1

# 对ax1调用twinx()方法,生成如同镜面效果后的ax2:

ax2 = ax1.twinx()

# 接着进行绘图, 将 y1, y2 分别画在 ax1, ax2 上:

ax1.plot(x, y1, ‘g-‘)   # green, solid line

ax1.set_xlabel(‘X data‘)

ax1.set_ylabel(‘Y1 data‘, color=‘g‘)

ax2.plot(x, y2, ‘b-‘) # blue

ax2.set_ylabel(‘Y2 data‘, color=‘b‘)

# 显示图像:

plt.show()

 

以上是关于matplotlib的学习15-次坐标轴的主要内容,如果未能解决你的问题,请参考以下文章

python使用matplotlib可视化自定义设置坐标轴的范围自定义设置主坐标轴刻度和次坐标轴刻度(ticks)

matplotlib 画图中图和次坐标轴

matplotlib

Python使用matplotlib函数subplot可视化多个不同颜色的折线图使用set_minor_locator函数指定坐标轴次刻度数值倍数(MultipleLocator)

matplotlib 设置坐标轴刻度

matplotlib 设置坐标轴刻度