有什么方法可以对Python中的分类列进行不同的计数吗?

时间:2019-12-05 01:19:56

标签: python matplotlib data-visualization seaborn

我是Python新手。我的数据如下:

enter image description here

在Tableau中,我可以轻松创建一个计算字段COUNTD(Serial)并将其与category列一起绘制,并在条形图中显示数据。如何在Python中完成此操作?我尝试了以下代码,但实际上并没有给我正确的数据。我在这里想念什么?

import seaborn as sns
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as  sns
%matplotlib inline


df = pd.read_excel('data.xlsx')

plt.bar(x ='Serial', height = 'question', data = df_quest, color = 'blue')

这是结果条形图:

enter image description here

但是结果应该给我17类=“高”。有什么想法吗?如果更简单,我也可以使用seaborn。

0 个答案:

没有答案