pyplot
728x90
[matplotlib] bar chart 그리기 : error bar 포함
bar chart 그리기 : error bar 포함Axes object의 ax의 bar method를 이용하여 bar chart를 그릴 수 있음.기본 사용법bar method의 기본적인 사용법은 다음과 같음.ax.bar( x_pos, # 각 bar가 그려질 x축 위치를 item으로 가지는 ndarray. data, # x_pos 의 item 에 대한 bar의 높이에 해당하는 데이터들. width = 0.8, # bar width. bottom = None, align='center', alpha=0.5, # bar 스타일 관련. yerr=error, # error bar를 기재할 때 사용됨. ecolor='black', capsize=10, # erro..