오류 막대가 matplotlib를 사용하여 마지막으로 렌더링되도록 하려면 다음 단계를 수행할 수 있습니다. -
- 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
- Figure()를 사용하여 새 Figure 생성 또는 기존 Figure 활성화 방법.
- gca()를 사용하여 현재 축 가져오기 방법.
- 줄 목록 그리기
- 플롯 y 대 x 오류 표시줄이 첨부된 선 및/또는 마커로.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() ax = plt.gca() [ax.plot(np.random.rand(10)) for j in range(10)] ax.errorbar(range(10), np.random.rand(10), yerr=.3 * np.random.rand(10)) plt.show()
출력