Để tạo Chỉ mục mới với danh sách nhãn thông qua đã bị xóa, hãy sử dụng index.drop () phương pháp. Chuyển danh sách các nhãn trong đó.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Tạo chỉ mục -
index = pd.Index(['Car','Bike','Truck','Ship','Airplane'])
Hiển thị chỉ mục -
print("Pandas Index...\n",index)
Danh sách chứa các nhãn sẽ được loại bỏ được chuyển -
print("\nUpdated index after deleting labels...\n",index.drop(['Bike', 'Ship']))
Ví dụ
Sau đây là mã -
import pandas as pd # Creating the index index = pd.Index(['Car','Bike','Truck','Ship','Airplane']) # Display the index print("Pandas Index...\n",index) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # a list containing labels to be dropped are passed print("\nUpdated index after deleting labels...\n",index.drop(['Bike', 'Ship']))
Đầu ra
Điều này sẽ tạo ra mã sau -
Pandas Index... Index(['Car', 'Bike', 'Truck', 'Ship', 'Airplane'], dtype='object') The dtype object... object A tuple of the shape of underlying data... (5,) Updated index after deleting labels... Index(['Car', 'Truck', 'Airplane'], dtype='object')