如何在水平条形图中绘制Counter对象?

时间:2014-03-06 11:05:11

标签: python python-3.x matplotlib counter

我有一个Counter对象。我想绘制一个像http://matplotlib.org/examples/lines_bars_and_markers/barh_demo.html

这样的水平条形图

我该怎么做?

1 个答案:

答案 0 :(得分:2)

这是您提到的修改后使用计数器对象的页面中的示例:

 """
Simple demo of a horizontal bar chart.
"""
import matplotlib.pyplot as plt; plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt


# Counter data, counter is your counter object
keys = counter.keys()
y_pos = np.arange(len(keys))
# get the counts for each key, assuming the values are numerical
performance = [counter[k] for k in keys]
# not sure if you want this :S
error = np.random.rand(len(keys))

plt.barh(y_pos, performance, xerr=error, align='center', alpha=0.4)
plt.yticks(y_pos, keys)
plt.xlabel('Counts per key')
plt.title('How fast do you want to go today?')

plt.show()