python中数据的合适图形

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中数据的合适图形相关的知识,希望对你有一定的参考价值。

我在pandas数据框中有以下数据。

        win_toss bat_or_bowl  counts  
0    Afghanistan         bat       2  
1    Afghanistan        bowl       2  
2      Australia         bat       3  
3     Bangladesh        bowl       2  
4        England         bat       3  
5        England        bowl       3  
6          India         bat       4  
7    New Zealand         bat       3  
8    New Zealand        bowl       4  
9       Pakistan         bat       2  
10      Pakistan        bowl       2  
11  South Africa         bat       2  
12  South Africa        bowl       4  
13     Sri Lanka         bat       2  
14     Sri Lanka        bowl       1  
15   West Indies         bat       1  
16   West Indies        bowl       5  

我希望获得折腾后每个团队喜欢的图形输出(即,折腾后每个团队决定击打/打碗的次数)。 python中最好的方法是什么?

答案

这样的事情?

fig,ax = plt.subplots(figsize=(10,6))
sns.barplot(data=df, x='win_toss',hue='bat_or_bowl', y='counts', ax=ax)
plt.show()

输出:

enter image description here

以上是关于python中数据的合适图形的主要内容,如果未能解决你的问题,请参考以下文章

python 用于数据探索的Python代码片段(例如,在数据科学项目中)

Android片段布局完成膨胀

DrawerLayout 的项目点击 - 啥时候更换片段合适?

龟图形 - 尝试获取背景图像失败?

最合适的数据结构(Python)

常用python日期日志获取内容循环的代码片段