我有一个名字列表:['joe','brian','stephen']
我想在jupyter中创建一个条形图,以名称作为索引,并在条形图中显示每个名称中的字母数。如何创建一个可以调用“ .plot(kind ='bar')”的系列,并获得所描述的条形图?
答案 0 :(得分:4)
import numpy as np
import matplotlib.pyplot as plt
bars = ['joe','brian','stephen']
height = [len(m) for m in x]
y_pos = np.arange(len(bars))
plt.bar(y_pos, height, color=(0.2, 0.4, 0.6, 0.6))
plt.xticks(y_pos, bars)
plt.show()
答案 1 :(得分:1)
您可以尝试一下,
import matplotlib.pyplot as plt
x = ['joe','brian','stephen']
y = [len(m) for m in x]
plt.bar(x, y)
plt.show()
答案 2 :(得分:0)