안녕하세요. 언제나휴일입니다. 이번에는 막대그래프를 그릴 때 사용하는 pyplot의 bar와 barh를 사용하는 실습을 할게요. 더보기 1. 시그니쳐 bar 함수에서는 x, height를 barh함수에서는 y, width 값을 필수로 전달합니다. #막대그래프 #matplotlib.pyplot.bar(x, # height, # width=0.8, # bottom=None, # align='center', # data=None, # **kwargs) # **kwargs: color, edgecolor,linewidth, tick_label, xerr, yerr, ecolor, capsize 2. 수직 막대그래프 import matplotlib.pyplot as plt levels = ['a', 'b', 'c..