我有一个Counter对象。我想绘制一个像http://matplotlib.org/examples/lines_bars_and_markers/barh_demo.html
这样的水平条形图我该怎么做?
答案 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()