반응형
import numpy as np
import matplotlib.pyplot as plt
t = np.arange(-1, 3, .01)
s = np.sin(2.5 * np.pi * t)
plt.plot(t, s)
plt.axvspan(1.25, 1.55, facecolor='red', edgecolor='gold', alpha=0.5, hatch='///')
plt.show()
https://matplotlib.org/3.1.3/api/_as_gen/matplotlib.pyplot.axvspan.html
matplotlib.pyplot.axvspan — Matplotlib 3.1.3 documentation
Parameters: xmin : scalar Number indicating the first X-axis coordinate of the vertical span rectangle in data units. xmax : scalar Number indicating the second X-axis coordinate of the vertical span rectangle in data units. ymin : scalar, optional Number
matplotlib.org
Hatch Demo — Matplotlib 3.1.3 documentation
Note Click here to download the full example code Hatch Demo Hatching (pattern filled polygons) is supported currently in the PS, PDF, SVG and Agg backends only. import matplotlib.pyplot as plt from matplotlib.patches import Ellipse, Polygon fig, (ax1, ax2
matplotlib.org
반응형
'Python > Matplotlib' 카테고리의 다른 글
[Python] matplotlib - plot outside text (0) | 2020.10.13 |
---|---|
[Python] matplotlib - plot 수직선, 수평선 그리기 (0) | 2020.08.25 |
[Python] matplotlib - plot 이미지 저장 (0) | 2020.08.25 |
[Python] matplotlib - plot 폰트 크기 변경 (0) | 2019.07.29 |