คอลัมน์ Binning ที่มีแพนด้าหลาม


106

ฉันมีคอลัมน์ Data Frame ที่มีค่าตัวเลข:

df['percentage'].head()
46.5
44.2
100.0
42.12

ฉันต้องการเห็นคอลัมน์เป็นจำนวนถังขยะ:

bins = [0, 1, 5, 10, 25, 50, 100]

ฉันจะได้ผลลัพธ์เป็นถังขยะพร้อมกับมันได้value countsอย่างไร?

[0, 1] bin amount
[1, 5] etc 
[5, 10] etc 
......

คำตอบ:


205

คุณสามารถใช้pandas.cut:

bins = [0, 1, 5, 10, 25, 50, 100]
df['binned'] = pd.cut(df['percentage'], bins)
print (df)
   percentage     binned
0       46.50   (25, 50]
1       44.20   (25, 50]
2      100.00  (50, 100]
3       42.12   (25, 50]

bins = [0, 1, 5, 10, 25, 50, 100]
labels = [1,2,3,4,5,6]
df['binned'] = pd.cut(df['percentage'], bins=bins, labels=labels)
print (df)
   percentage binned
0       46.50      5
1       44.20      5
2      100.00      6
3       42.12      5

หรือnumpy.searchsorted:

bins = [0, 1, 5, 10, 25, 50, 100]
df['binned'] = np.searchsorted(bins, df['percentage'].values)
print (df)
   percentage  binned
0       46.50       5
1       44.20       5
2      100.00       6
3       42.12       5

... แล้วvalue_countsหรือgroupbyและรวมsize:

s = pd.cut(df['percentage'], bins=bins).value_counts()
print (s)
(25, 50]     3
(50, 100]    1
(10, 25]     0
(5, 10]      0
(1, 5]       0
(0, 1]       0
Name: percentage, dtype: int64

s = df.groupby(pd.cut(df['percentage'], bins=bins)).size()
print (s)
percentage
(0, 1]       0
(1, 5]       0
(5, 10]      0
(10, 25]     0
(25, 50]     3
(50, 100]    1
dtype: int64

โดยค่าเริ่มต้นการกลับมาcutcategorical

Seriesวิธีการเช่นSeries.value_counts()จะใช้ทุกหมวดหมู่แม้ว่าบางประเภทไม่ได้อยู่ในข้อมูลการดำเนินงานในเด็ดขาด


ถ้าไม่มีbins = [0, 1, 5, 10, 25, 50, 100]ฉันบอกได้ไหมว่าสร้าง 5 ถังขยะแล้วมันจะตัดมันด้วยการตัดเฉลี่ย ตัวอย่างเช่นฉันมี 110 ระเบียนฉันต้องการตัดออกเป็น 5 ถังโดยมี 22 ระเบียนในแต่ละถัง
qqqwww

2
@qqqwww - ไม่แน่ใจว่าเข้าใจคิดqcutมั้ย? ลิงค์
jezrael

@qqqwww ในการทำเช่นนั้นตัวอย่าง pd.cut ในหน้าจะแสดง: pd.cut (np.array ([1, 7, 5, 4, 6, 3]), 3) จะตัดอาร์เรย์ออกเป็น 3 ส่วนเท่า ๆ กัน
Ayan Mitra

@jezreal คุณสามารถแนะนำวิธีคำนวณค่าเฉลี่ยของแต่ละถังได้หรือไม่?
Ayan Mitra

1
@AyanMitra - คุณคิดว่าdf.groupby(pd.cut(df['percentage'], bins=bins)).mean()?
jezrael

7

ใช้numbaโมดูลเพื่อเพิ่มความเร็ว

ในชุดข้อมูลขนาดใหญ่ ( 500k >) pd.cutอาจค่อนข้างช้าสำหรับการ binning ข้อมูล

ฉันเขียนฟังก์ชันของตัวเองnumbaด้วยการคอมไพล์ทันเวลาซึ่ง16xเร็วกว่า:

from numba import njit

@njit
def cut(arr):
    bins = np.empty(arr.shape[0])
    for idx, x in enumerate(arr):
        if (x >= 0) & (x < 1):
            bins[idx] = 1
        elif (x >= 1) & (x < 5):
            bins[idx] = 2
        elif (x >= 5) & (x < 10):
            bins[idx] = 3
        elif (x >= 10) & (x < 25):
            bins[idx] = 4
        elif (x >= 25) & (x < 50):
            bins[idx] = 5
        elif (x >= 50) & (x < 100):
            bins[idx] = 6
        else:
            bins[idx] = 7

    return bins
cut(df['percentage'].to_numpy())

# array([5., 5., 7., 5.])

ไม่บังคับ: คุณสามารถแมปกับ bins เป็นสตริงได้ด้วย:

a = cut(df['percentage'].to_numpy())

conversion_dict = {1: 'bin1',
                   2: 'bin2',
                   3: 'bin3',
                   4: 'bin4',
                   5: 'bin5',
                   6: 'bin6',
                   7: 'bin7'}

bins = list(map(conversion_dict.get, a))

# ['bin5', 'bin5', 'bin7', 'bin5']

เปรียบเทียบความเร็ว :

# create dataframe of 8 million rows for testing
dfbig = pd.concat([df]*2000000, ignore_index=True)

dfbig.shape

# (8000000, 1)
%%timeit
cut(dfbig['percentage'].to_numpy())

# 38 ms ± 616 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)
%%timeit
bins = [0, 1, 5, 10, 25, 50, 100]
labels = [1,2,3,4,5,6]
pd.cut(dfbig['percentage'], bins=bins, labels=labels)

# 215 ms ± 9.76 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.