Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python Pandas - รับรหัส (ตำแหน่งของแต่ละป้ายกำกับ) ใน MultiIndex


ในการรับรหัส (ตำแหน่งของแต่ละป้ายกำกับ) ใน MultiIndex ให้ใช้ MultiIndex.codes ทรัพย์สินในหมีแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

MultiIndex เป็นวัตถุดัชนีหลายระดับหรือแบบลำดับชั้นสำหรับวัตถุแพนด้า สร้างอาร์เรย์ -

arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']]

พารามิเตอร์ "names" ตั้งชื่อสำหรับแต่ละระดับดัชนี:from_arrays() ถูกใช้เพื่อสร้าง Multiindex -

multiIndex = pd.MultiIndex.from_arrays(arrays, names=('ranks', 'student'))

รับตำแหน่งของแต่ละป้ายกำกับใน Multiindex -

print("\nThe location of each label in Multi-index...\n",multiIndex.codes)

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# MultiIndex is a multi-level, or hierarchical, index object for pandas objects
# Create arrays
arrays = [[1, 2, 3, 4, 5], ['John', 'Tim', 'Jacob', 'Chris', 'Keiron']]

# The "names" parameter sets the names for each of the index levels
# The from_arrays() is used to create a Multiindex
multiIndex = pd.MultiIndex.from_arrays(arrays, names=('ranks', 'student'))

# display the Multiindex
print("The Multi-index...\n",multiIndex)

# get the levels in Multiindex
print("\nThe levels in Multi-index...\n",multiIndex.levels)

# get the location of each label in Multiindex
print("\nThe location of each label in Multi-index...\n",multiIndex.codes)

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

The Multi-index...
MultiIndex([(1,   'John'),
            (2,    'Tim'),
            (3,  'Jacob'),
            (4,  'Chris'),
            (5, 'Keiron')],
            names=['ranks', 'student'])

The levels in Multi-index...
   [[1, 2, 3, 4, 5], ['Chris', 'Jacob', 'John', 'Keiron', 'Tim']]

The location of each label in Multi-index...
   [[0, 1, 2, 3, 4], [2, 4, 1, 0, 3]]