개발 꿀팁/PYTHON

【이중 y축 그래프】파이썬은 이중 y축 그래프를 만듭니다

Jammie 2023. 1. 11. 11:21
반응형
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 1, num=10)
y1 = x ** 2
y2 = -x ** 2
fig = plt.figure()
ax1 = fig.add_subplot(111)
ax1.plot(x, y1, 'r', label="y1")
ax1.set_ylabel('y1')
ax2 = ax1.twinx()  # this is the important function
ax2.plot(x, y2, 'g', label="y2")
fig.legend()  # 合并图例
ax2.set_ylabel('y2')
ax2.set_xlabel('x')
plt.show()

 

반응형