python-3.x 海运:在计数图中绘制指数值

iq0todco  于 2023-01-10  发布在  Python
关注(0)|答案(1)|浏览(137)

我有一个名为df_summary的 Dataframe :

Grouping    High    Low
App_ID      
1   30.813124   69.186876
3   44.444444   55.555556
4   23.873122   76.126878
5   50.000000   50.000000
6   14.353612   85.646388
7   13.333333   86.666667
8   18.895966   81.104034
9   12.745098   87.254902
12  0.000000    100.000000
13  43.788820   56.211180
14  30.147059   69.852941
15  45.714286   54.285714
16  33.635729   66.364271
17  73.076923   26.923077
18  0.000000    100.000000
20  38.775510   61.224490

我想用seaborn的countplot来绘制它。我的代码是:

sns.countplot(data=df_summary,x='App_ID',hue='Grouping')

但是,我收到一条错误消息

ValueError: Could not interpret input 'App_ID'

寻求您的帮助来纠正这个问题。提前感谢

eeq64g8w

eeq64g8w1#

要在 Dataframe 索引上绘制计数图,我们可以用途:

sns.countplot(x=df_summary['App_ID'])

这会将您的索引解释为输入,并且列的颜色会根据您的索引而有所不同。

相关问题