ในการรับตำแหน่งและดัชนีแบบแบ่งส่วนสำหรับป้ายกำกับ/ระดับที่ร้องขอใน MultiIndex ให้ใช้ get_loc_level() วิธีการในนุ่น
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
MultiIndex เป็นวัตถุดัชนีหลายระดับหรือแบบลำดับชั้นสำหรับวัตถุแพนด้า -
multiIndex = pd.MultiIndex.from_arrays([list('pqrrss'), list('strvwx')],names=['One', 'Two'])
แสดง MultiIndex -
print("The MultiIndex...\n",multiIndex)
รับตำแหน่งและดัชนีแบ่ง -
print("\nGet the location and sliced index...\n",multiIndex.get_loc_level('r'))
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # MultiIndex is a multi-level, or hierarchical, index object for pandas objects multiIndex = pd.MultiIndex.from_arrays([list('pqrrss'), list('strvwx')],names=['One', 'Two']) # display the MultiIndex print("The MultiIndex...\n",multiIndex) # get the levels in MultiIndex print("\nThe levels in MultiIndex...\n",multiIndex.levels) # Get the location and sliced index print("\nGet the location and sliced index...\n",multiIndex.get_loc_level('r'))
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
The MultiIndex... MultiIndex([('p', 's'), ('q', 't'), ('r', 'r'), ('r', 'v'), ('s', 'w'), ('s', 'x')], names=['One', 'Two']) The levels in MultiIndex... [['p', 'q', 'r', 's'], ['r', 's', 't', 'v', 'w', 'x']] Get the location and sliced index... (slice(2, 4, None), Index(['r', 'v'], dtype='object', name='Two'))