메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
체크된 경로 효과가 있는 줄 #
를 사용하여 한쪽을 장벽으로 표시하기 위해 선을 따라 눈금을 추가할 수 있습니다
TickedStroke
. 눈금의 각도, 간격 및 길이를 제어할 수 있습니다.
진드기도 범례에 적절하게 나타납니다.
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import patheffects
# Plot a straight diagonal line with ticked style path
fig, ax = plt.subplots(figsize=(6, 6))
ax.plot([0, 1], [0, 1], label="Line",
path_effects=[patheffects.withTickedStroke(spacing=7, angle=135)])
# Plot a curved line with ticked style path
nx = 101
x = np.linspace(0.0, 1.0, nx)
y = 0.3*np.sin(x*8) + 0.4
ax.plot(x, y, label="Curve", path_effects=[patheffects.withTickedStroke()])
ax.legend()
plt.show()