collection.Counterで作った辞書を棒グラフでプロット[python]
import collections import matplotlib.pyplot as plt l = ['a', 'b', 'b', 'b', 'c'] c = collections.Counter(l) plt.bar(list(c.keys()), list(c.values()))
画像処理や自然言語処理などのハマりどころをまとめます
import collections import matplotlib.pyplot as plt l = ['a', 'b', 'b', 'b', 'c'] c = collections.Counter(l) plt.bar(list(c.keys()), list(c.values()))
ディスカッション
コメント一覧
まだ、コメントがありません