Để kiểm tra xem Chỉ mục Pandas chỉ bao gồm các boolean hay không, hãy sử dụng index.is_boolean () trong Pandas. Đầ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 Pandas
index = pd.Index([True, True, False, False, True, True, True])
Hiển thị chỉ mục Gấu trúc -
print("Pandas Index...\n",index)
Kiểm tra xem các giá trị chỉ mục chỉ có boolean -
print("\nIndex values only consists of booleans?\n",index.is_boolean())
Ví dụ
Sau đây là mã -
import pandas as pd # Creating Pandas index index = pd.Index([True, True, False, False, True, True, True]) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # check whether index values has only booleans print("\nIndex values only consists of booleans?\n",index.is_boolean())
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Pandas Index... Index([True, True, False, False, True, True, True], dtype='object') Number of elements in the index... 7 The dtype object... object Index values only consists of booleans? True