ตารางความถี่สำหรับตัวแปรเดียว


98

คำถามสุดท้ายของแพนด้ามือใหม่สำหรับวันนี้: ฉันจะสร้างตารางสำหรับซีรีส์เดี่ยวได้อย่างไร

ตัวอย่างเช่น:

my_series = pandas.Series([1,2,2,3,3,3])
pandas.magical_frequency_function( my_series )

>> {
     1 : 1,
     2 : 2, 
     3 : 3
   }

googling จำนวนมากทำให้ฉันไปที่ Series.describe () และ pandas.crosstabs แต่สิ่งเหล่านี้ไม่ได้ทำในสิ่งที่ฉันต้องการ: ตัวแปรเดียวนับตามหมวดหมู่ โอ้และคงจะดีถ้ามันใช้งานได้กับประเภทข้อมูลที่แตกต่างกันเช่นสตริง ints ฯลฯ

คำตอบ:


153

อาจจะ.value_counts()?

>>> import pandas
>>> my_series = pandas.Series([1,2,2,3,3,3, "fred", 1.8, 1.8])
>>> my_series
0       1
1       2
2       2
3       3
4       3
5       3
6    fred
7     1.8
8     1.8
>>> counts = my_series.value_counts()
>>> counts
3       3
2       2
1.8     2
fred    1
1       1
>>> len(counts)
5
>>> sum(counts)
9
>>> counts["fred"]
1
>>> dict(counts)
{1.8: 2, 2: 2, 3: 3, 1: 1, 'fred': 1}

5
.value_counts().sort_index(1)เพื่อป้องกันไม่ให้คอลัมน์แรกผิดคำสั่ง
เล็กน้อย

9
มีข้อมูลเทียบเท่าสำหรับ DataFrame แทนที่จะเป็นซีรี่ส์หรือไม่ ฉันลองใช้ .value_counts () บน df และได้รับAttributeError: 'DataFrame' object has no attribute 'value_counts'
Mittenchops

1
มีวิธีง่ายๆในการแปลงจำนวนเหล่านี้เป็นสัดส่วนหรือไม่?
dsaxton

7
@dsaxton คุณสามารถใช้. value_counts (normalize = True) เพื่อแปลงผลลัพธ์เป็นสัดส่วน
Max Power

2
หากต้องการใช้สิ่งนี้บนดาต้าเฟรมแทนให้แปลงเป็นการแสดงอาร์เรย์ตัวเลข 1-D ที่เทียบเท่าเช่น - pd.value_counts(df.values.ravel())ซึ่งส่งคืนชุดที่มีindexและvaluesแอตทริบิวต์มีองค์ประกอบที่ไม่ซ้ำกันและจำนวนขององค์ประกอบตามลำดับ
Nickil Maveli

11

คุณสามารถใช้ความเข้าใจรายการบนดาต้าเฟรมเพื่อนับความถี่ของคอลัมน์ดังกล่าว

[my_series[c].value_counts() for c in list(my_series.select_dtypes(include=['O']).columns)]

ทำให้พังถล่ม:

my_series.select_dtypes(include=['O']) 

เลือกเฉพาะข้อมูลที่จัดหมวดหมู่

list(my_series.select_dtypes(include=['O']).columns) 

เปลี่ยนคอลัมน์จากด้านบนให้เป็นรายการ

[my_series[c].value_counts() for c in list(my_series.select_dtypes(include=['O']).columns)] 

วนซ้ำตามรายการด้านบนและใช้ value_counts () กับแต่ละคอลัมน์


5

คำตอบของ @DSM นั้นง่ายและตรงไปตรงมา แต่ฉันคิดว่าฉันจะเพิ่มข้อมูลของตัวเองลงในคำถามนี้ หากคุณดูโค้ดของpandas.value_countsคุณจะเห็นว่ามีหลายอย่างเกิดขึ้น

หากคุณต้องการคำนวณความถี่ของอนุกรมจำนวนมากอาจใช้เวลาสักครู่ การใช้งานที่เร็วขึ้นคือการใช้numpy.uniqueกับreturn_counts = True

นี่คือตัวอย่าง:

import pandas as pd
import numpy as np

my_series = pd.Series([1,2,2,3,3,3])

print(my_series.value_counts())
3    3
2    2
1    1
dtype: int64

โปรดสังเกตว่าสินค้าที่ส่งคืนเป็นหมีแพนด้า

ในการเปรียบเทียบnumpy.uniqueส่งคืนทูเปิลที่มีสองรายการคือค่าที่ไม่ซ้ำกันและจำนวนนับ

vals, counts = np.unique(my_series, return_counts=True)
print(vals, counts)
[1 2 3] [1 2 3]

จากนั้นคุณสามารถรวมสิ่งเหล่านี้ลงในพจนานุกรม:

results = dict(zip(vals, counts))
print(results)
{1: 1, 2: 2, 3: 3}

แล้วเข้าสู่ pandas.Series

print(pd.Series(results))
1    1
2    2
3    3
dtype: int64

0

สำหรับการแจกแจงความถี่ของตัวแปรที่มีค่ามากเกินไปคุณสามารถยุบค่าในคลาสได้

ที่นี่ฉันให้ค่าemployrateตัวแปรมากเกินไปและไม่มีความหมายของการแจกแจงความถี่ตรงvalues_count(normalize=True)

                country  employrate alcconsumption
0           Afghanistan   55.700001            .03
1               Albania   11.000000           7.29
2               Algeria   11.000000            .69
3               Andorra         nan          10.17
4                Angola   75.699997           5.57
..                  ...         ...            ...
208             Vietnam   71.000000           3.91
209  West Bank and Gaza   32.000000               
210         Yemen, Rep.   39.000000             .2
211              Zambia   61.000000           3.56
212            Zimbabwe   66.800003           4.96

[213 rows x 3 columns]

การแจกแจงความถี่values_count(normalize=True)โดยไม่มีการจำแนกความยาวของผลลัพธ์ที่นี่คือ 139 (ดูเหมือนจะไม่มีความหมายเป็นการแจกแจงความถี่):

print(gm["employrate"].value_counts(sort=False,normalize=True))

50.500000   0.005618
61.500000   0.016854
46.000000   0.011236
64.500000   0.005618
63.500000   0.005618

58.599998   0.005618
63.799999   0.011236
63.200001   0.005618
65.599998   0.005618
68.300003   0.005618
Name: employrate, Length: 139, dtype: float64

การจัดหมวดหมู่เราใส่ค่าทั้งหมดด้วยช่วงหนึ่งเช่น

0-10 เป็น 1
11-20 เป็น 2  
21-30 เป็น 3 และอื่น ๆ
gm["employrate"]=gm["employrate"].str.strip().dropna()  
gm["employrate"]=pd.to_numeric(gm["employrate"])
gm['employrate'] = np.where(
   (gm['employrate'] <=10) & (gm['employrate'] > 0) , 1, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=20) & (gm['employrate'] > 10) , 1, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=30) & (gm['employrate'] > 20) , 2, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=40) & (gm['employrate'] > 30) , 3, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=50) & (gm['employrate'] > 40) , 4, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=60) & (gm['employrate'] > 50) , 5, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=70) & (gm['employrate'] > 60) , 6, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=80) & (gm['employrate'] > 70) , 7, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=90) & (gm['employrate'] > 80) , 8, gm['employrate']
   )
gm['employrate'] = np.where(
   (gm['employrate'] <=100) & (gm['employrate'] > 90) , 9, gm['employrate']
   )
print(gm["employrate"].value_counts(sort=False,normalize=True))

หลังจากจำแนกแล้วเรามีการแจกแจงความถี่ที่ชัดเจน ที่นี่เราสามารถเห็นได้อย่างง่ายดายว่า37.64%ในประเทศต่างๆมีอัตราการจ้างงานระหว่าง51-60% และ11.79%ประเทศมีอัตราการจ้างงานระหว่างกัน71-80%

5.000000   0.376404
7.000000   0.117978
4.000000   0.179775
6.000000   0.264045
8.000000   0.033708
3.000000   0.028090
Name: employrate, dtype: float64
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.