Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Cách sắp xếp MultiIndex

Để tạo MultiIndex, hãy sử dụng from_arrays () phương pháp. Tuy nhiên, để sắp xếp MultiIndex, hãy sử dụng multiIndex.sortlevel () . trong Pandas.

Đầu tiên, hãy nhập các thư viện được yêu cầu -

import pandas as pd

MultiIndex là một đối tượng chỉ mục đa cấp hoặc phân cấp cho các đối tượng gấu trúc. Tạo mảng -

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

Tham số "tên" đặt tên cho mỗi cấp chỉ mục. From_arrays () được sử dụng để tạo MultiInde -

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

Sắp xếp MultiIndex. Sắp xếp mặc định ở cấp 0 -

print("\nSort MultiIndex...\n",multiIndex.sortlevel())

Ví dụ

Sau đây là mã -

import pandas as pd

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

# 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)

# Sort MultiIndex
# The default sorts at level 0
print("\nSort MultiIndex...\n",multiIndex.sortlevel())

Đầu ra

Điều này sẽ tạo ra kết quả sau -

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

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

Sort MultiIndex...
(MultiIndex([(1, 'Chris'),
             (2,  'John'),
             (3, 'Jacob'),
             (4,   'Tim')],
names=['ranks', 'student']), array([3, 0, 2, 1], dtype=int64))