6
사전을 사용하여 matplotlib를 사용하여 막대 플로팅
matplotlibdict에서 직접 데이터를 사용 하여 막대 그림을 그리는 방법이 있습니까? 내 사전은 다음과 같습니다. D = {u'Label1':26, u'Label2': 17, u'Label3':30} 나는 기대했다 fig = plt.figure(figsize=(5.5,3),dpi=300) ax = fig.add_subplot(111) bar = ax.bar(D,range(1,len(D)+1,1),0.5) 작동하지만 그렇지 않습니다. 다음은 오류입니다. >>> ax.bar(D,range(1,len(D)+1,1),0.5) Traceback (most recent call last): File "<stdin>", line 1, in <module> File …
95
python
matplotlib
plot