怎么用pandas對(duì)某一列進(jìn)行計(jì)數(shù)

小億
485
2023-12-05 13:07:07

要使用pandas對(duì)某一列進(jìn)行計(jì)數(shù),可以使用value_counts()函數(shù)。下面是一個(gè)簡(jiǎn)單的示例:

import pandas as pd

# 創(chuàng)建一個(gè)包含多個(gè)顏色的DataFrame
data = {'顏色': ['紅', '藍(lán)', '綠', '紅', '黃', '綠']}
df = pd.DataFrame(data)

# 對(duì)顏色列進(jìn)行計(jì)數(shù)
counts = df['顏色'].value_counts()

print(counts)

輸出結(jié)果為:

紅    2
綠    2
藍(lán)    1
黃    1
Name: 顏色, dtype: int64

這樣就可以得到每種顏色在該列中出現(xiàn)的次數(shù)。

0