python画两个坐标轴

matplotlib如何画两个坐标轴

虽然不经常遇到,但是还是值得记录一下,以前都使用R语言的ggplot2, 现在感觉matplotlib画图更加方便
如果要是画两个y坐标轴,就可以使用下方代码,主要注意下方的ax2 = ax1.twinx()。这个感觉就是让ax1,ax2使用同一个x轴。

import numpy as np
import matplotlib.pyplot as plt

# Create some mock data
t = np.arange(0.01, 10.0, 0.01)
data1 = np.exp(t)
data2 = np.sin(2 * np.pi * t)

fig, ax1 = plt.subplots()

color = 'tab:red'
ax1.set_xlabel('time (s)')
ax1.set_ylabel('exp', color=color)
ax1.plot(t, data1, color=color)
ax1.tick_params(axis='y', labelcolor=color)

ax2 = ax1.twinx()  # instantiate a second axes that shares the same x-axis

color = 'tab:blue'
ax2.set_ylabel('sin', color=color)  # we already handled the x-label with ax1
ax2.plot(t, data2, color=color)
ax2.tick_params(axis='y', labelcolor=color)

fig.tight_layout()  # otherwise the right y-label is slightly clipped
plt.show()

python画两个坐标轴_第1张图片

如果想要阅读更多,可以看matplotlib链接:
https://matplotlib.org/gallery/subplots_axes_and_figures/two_scales.html#sphx-glr-gallery-subplots-axes-and-figures-two-scales-py

你可能感兴趣的:(matplotlib,python,python,数据可视化,matplotlib,机器学习,人工智能)