如何在 Pandas 中從 value_counts() 提取值名稱和計數?


要提取值名稱和計數,我們首先建立具有 4 列的資料框 -

dataFrame = pd.DataFrame({"Car": ['BMW', 'Mustang', 'Tesla', 'Mustang', 'Mercedes', 'Tesla', 'Audi'],"Cubic Capacity": [2000, 1800, 1500, 2500, 2200, 3000, 2000],"Reg Price": [7000, 1500, 5000, 8000, 9000, 6000, 1500],"Units Sold": [ 200, 120, 150, 120, 210, 250, 220]
})

獲取特定列 Car 的值名稱和計數 -

res = dataFrame['Car'].value_counts()

獲取特定列 Units Sold 的值名稱和計數 -

res = dataFrame['Units Sold'].value_counts()

示例

以下是完整的程式碼—

import pandas as pd

# creating dataframe
dataFrame = pd.DataFrame({"Car": ['BMW', 'Mustang', 'Tesla', 'Mustang', 'Mercedes', 'Tesla', 'Audi'],"Cubic Capacity": [2000, 1800, 1500, 2500, 2200, 3000, 2000],"Reg Price": [7000, 1500, 5000, 8000, 9000, 6000, 1500],"Units Sold": [ 200, 120, 150, 120, 210, 250, 220]
})

print("DataFrame ...\n",dataFrame)

res = dataFrame['Car'].value_counts()
print("\nDisplaying value name and counts from the column Car:\n",res)

res = dataFrame['Units Sold'].value_counts()
print("\nDisplaying value name and counts from the column Units Sold:\n",res)

輸出

這將產生以下輸出 -

DataFrame ...
        Car   Cubic Capacity   Reg Price   Units Sold
0       BMW            2000         7000          200
1   Mustang            1800         1500          120
2     Tesla            1500         5000          150
3   Mustang            2500         8000          120
4  Mercedes            2200         9000          210
5     Tesla            3000         6000          250
6      Audi            2000         1500          220

Displaying value name and counts from the column Car:
Mustang    2
Tesla      2
Audi       1
BMW        1
Mercedes   1
Name: Car, dtype: int64

Displaying value name and counts from the column Units Sold:
120   2
150   1
220   1
210   1
250   1
200   1
Name: Units Sold, dtype: int64

更新於:2021 年 9 月 29 日

332 次瀏覽

啟動你的 職業

透過完成課程獲得認證

開始
廣告