解决python中使用plot画图,图不显示的问题

时间:2022-08-25 22:40:51

对以下数据画图结果图不显示,修改过程如下

python" id="highlighter_458026">
?
1
2
3
df3 = {'chinese':109, 'american':88, 'german': 66, 'korea':23, 'japan':5, 'england':118}
df4 = pd.dataframe(df3)
df4.plot(kind='barh', rot=0)

运行结果:valueerror: if using all scalar values, you must pass an index

原因:缺少索引

修改后:

?
1
2
3
4
5
6
7
#方式1:
df4 = pd.dataframe.from_dict(df3,orient='index').t
df4.plot(kind='barh', rot=0)
print df4
#结果:
  korea england chinese german american japan
0   23   118   109   66    88   5
?
1
2
3
4
5
6
7
8
9
10
11
12
#方式2:
 
df5 = pd.dataframe({"key": df3.keys(), "value": df3.values()})
print df5
#结果为:
    key value
0   korea   23
1  england  118
2  chinese  109
3  german   66
4 american   88
5   japan   5
?
1
2
3
4
5
6
7
# 作图语句:
df4.plot()
df5.plot(kind='barh', rot=0)
#运行以上语句图片不显示
#增加以下句子后出现图片
import matplotlib.pyplot as plt
plt.show()

df4的图结果

解决python中使用plot画图,图不显示的问题

df5的图结果

解决python中使用plot画图,图不显示的问题

以上这篇解决python中使用plot画图,图不显示的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/Data_Ada/article/details/72873352