작성
·
222
1
답변 1
0
안녕하세요.
다양하게 응용을 해보고 있다니 멋집니다 👍
판다스의 시각화는 matplotlib을 사용하기 쉽게 만들어진 도구 입니다.
그래서 추가적인 시각화를 하고자 한다면 matplotlib을 함께 사용하시는 방법이 있어요.
[Anatomy of a figure — Matplotlib 3.4.2 documentation](https://matplotlib.org/stable/gallery/showcase/anatomy.html)
해당 문서를 참고하여 아래 기능을 활용해 보세요.
ax.annotate('Spines', xy=(4.0, 0.35), xytext=(3.3, 0.5), weight='bold', color=color, arrowprops=dict(arrowstyle='->', connectionstyle="arc3", color=color)) ax.annotate('', xy=(3.15, 0.0), xytext=(3.45, 0.45), weight='bold', color=color, arrowprops=dict(arrowstyle='->', connectionstyle="arc3", color=color)) ax.text(4.0, -0.4, "Made with https://matplotlib.org", fontsize=10, ha="right", color='.5')