次のCounterオブジェクトのヒストグラムをプロットする方法?:
w = collections.Counter()
l = ['a', 'b', 'b', 'b', 'c']
for o in l:
w[o]+=1
これがあなたがしたいことだと思いますか? xtickラベルを追加するだけです(matplotlibのドキュメントを参照)
import matplotlib.pyplot as plt
import collections
l = ['a', 'b', 'b', 'b', 'c']
count = collections.Counter(l)
print(count)
plt.bar(range(len(count)), count.values())
plt.show()