我正在使用计数器from collections import Counter
,我想使用matplotlib.pylot
.
当我尝试使用:
plt.bar(range(len(cnt)), cnt.values(), align='center')
plt.xticks(range(len(cnt)), cnt.keys())
plt.show()
我收到以下错误:
ValueError: matplotlib display text must have all code points < 128 or use Unicode strings
这就是我尝试将 Counter 字典键转换为 Unicode 的原因。