Python/Matplotlib
Matplotlib에서 수직선 그리기
webnautes
2021. 11. 28. 17:27
반응형
Matplotlib에서 수직선을 그리는 예제입니다.
2021. 11. 28 최초작성
axvline 함수에 x좌표를 지정해주면 해당 위치에 수직선을 그릴 수 있습니다.
import matplotlib.pylab as plt
import numpy as np
x = np.linspace(0, 360, 360)
x = np.deg2rad(x)
plt.plot(x, np.sin(x))
for angle in range(0, 361, 90):
rad = np.deg2rad(angle)
plt.axvline(x=rad, c='red')
plt.xlabel('Angle [rad]')
plt.ylabel('sin(x)')
plt.axis('tight')
plt.show()
참고
반응형