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
'Python > 파이썬_데이터시각화' 카테고리의 다른 글
#23 Seaborn - 막대그래프 (0) | 2023.02.14 |
---|---|
#22 2중 y축 표시하기 (0) | 2023.02.14 |
#20 그래프 강조하기 - 수직선과 수평선 (0) | 2023.02.14 |
#19 그래프 강조하기 - 영역 채우기 (0) | 2023.02.14 |
#18 공통 스타일 지정하기 (0) | 2023.02.14 |