Để kiểm tra xem hai đối tượng Chỉ mục có thuộc tính và loại đối tượng giống nhau hay không, hãy sử dụng index1.identical (index2) phương pháp.
Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Tạo Pandas index1 và index2 -
index1 = pd.Index([15, 25, 35, 45, 55]) index2 = pd.Index([15, 25, 35, 45, 55])
Hiển thị index1 và index2 -
print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
Kiểm tra xem hai đối tượng chỉ mục có thuộc tính và kiểu giống nhau hay không -
print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))
Ví dụ
Sau đây là mã -
import pandas as pd # Creating Pandas index1 and index2 index1 = pd.Index([15, 25, 35, 45, 55]) index2 = pd.Index([15, 25, 35, 45, 55]) # Display the index1 and index2 print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2) print("\nThe two Index objects have similar attributes and types?" "\n",index1.identical(index2))
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Pandas Index1... Int64Index([15, 25, 35, 45, 55], dtype='int64') Pandas Index2... Int64Index([15, 25, 35, 45, 55], dtype='int64') The two Index objects have similar attributes and types? True