#21 그래프에 설명 적기 - text, annotation

1  텍스트 추가하기

plt.text(x좌표, y좌표, 텍스트)

rotation=회전각도

ha : horizontal alignment

va : vertical alignment

 

텍스트 상자
 bbox = {'boxstyle':상자스타일, 'fc':facecolor,'ec':edgecolor,...}
 boxstyle : 'round'/'square'

 

2  화살표와 텍스트 추가하기

plt.annotate('텍스트', xy=(화살표x,화살표y), xytext=(텍스트x,텍스트y), arrowprops=화살표속성(딕셔너리))

화살표 속성
 width The width of the arrow in points
 headwidth The width of the base of the arrow head in points
 headlength The length of the arrow head in points
 shrink Fraction of total length to shrink from both ends