메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
주석 변환 #
이 예는 주석에 다른 좌표계를 사용하는 방법을 보여줍니다. 주석 기능에 대한 전체 개요는 주석 자습서 를 참조하십시오 .
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.005)
y = np.exp(-x/2.) * np.sin(2*np.pi*x)
fig, ax = plt.subplots()
ax.plot(x, y)
ax.set_xlim(0, 10)
ax.set_ylim(-1, 1)
xdata, ydata = 5, 0
xdisplay, ydisplay = ax.transData.transform((xdata, ydata))
bbox = dict(boxstyle="round", fc="0.8")
arrowprops = dict(
arrowstyle="->",
connectionstyle="angle,angleA=0,angleB=90,rad=10")
offset = 72
ax.annotate(
f'data = ({xdata:.1f}, {ydata:.1f})',
(xdata, ydata),
xytext=(-2*offset, offset), textcoords='offset points',
bbox=bbox, arrowprops=arrowprops)
ax.annotate(
f'display = ({xdisplay:.1f}, {ydisplay:.1f})',
xy=(xdisplay, ydisplay), xycoords='figure pixels',
xytext=(0.5*offset, -offset), textcoords='offset points',
bbox=bbox, arrowprops=arrowprops)
plt.show()
참조
다음 함수, 메서드, 클래스 및 모듈의 사용이 이 예제에 표시됩니다.