matplotlib 그래프 위에 화살표 그리기
matplotlib 그래프 위에 화살표 그리기¶ In [1]: # (1,1) 에서 (5, 5)로 향하는 화살표 그리기 import matplotlib.pyplot as plt import numpy as np #a = np.array([5, 5]) plt.annotate('', xy=(5, 5), xytext=(1, 1), arrowprops={"facecolor": "red"}) plt.xticks(np.arange(0, 10)) plt.yticks(np.arange(0, 10)) plt.show()
2023. 8. 8.
matplotlib 을 활용한 도형 그리기
matplotlib 을 활용한 도형 그리기¶ plt.plot(x좌표, y좌표, 마크, 크기) 을 활용하여 그림을 그릴 수 있습니다 In [1]: import matplotlib.pyplot as plt # 원을 그리는 예시는 아래와 같습니다 plt.plot(0, 0, 'o', ms=50) plt.show() In [2]: plt.plot(0, 0, 'o', ms=100) plt.show() In [3]: # 아래 마크 리스트를 이용하여 좀더 다양한 도형을 그릴 수 있습니다. li = [ (".", "point marker"), (",", "pixel marker"), ("o", "circle marker") , ("v", "trangle_down marker"), ("^", ..
2023. 8. 8.