Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
741 B
2
Indexable
import matplotlib.pyplot as plt

# 创建一个新的图形
fig, ax1 = plt.subplots()

# 绘制下方的曲线
ax1.plot([1, 2, 3, 4, 5], [1, 4, 9, 16, 25], 'b-')
ax1.set_xlabel('下方横坐标')  # 设置下方横坐标的标签
ax1.set_ylabel('下方纵坐标', color='b')  # 设置下方纵坐标的标签
ax1.tick_params('y', colors='b')  # 设置下方纵坐标的颜色

# 创建上方的坐标轴
ax2 = ax1.twiny()

# 绘制上方的曲线
ax2.plot([1, 2, 3, 4, 5], [1, 8, 27, 64, 125], 'r-')
ax2.set_xlabel('上方横坐标')  # 设置上方横坐标的标签
ax2.set_ylabel('上方纵坐标', color='r')  # 设置上方纵坐标的标签
ax2.tick_params('y', colors='r')  # 设置上方纵坐标的颜色

# 显示图形
plt.show()