Để kiểm tra xem Chỉ mục Pandas có chỉ bao gồm các số nguyên hay không, hãy sử dụng index.is_integer () 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([5, 10, 25, 50, 75, 100, 125, 150])
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ó int -
print("\nIndex values only consists of integers?\n",index.is_integer())
Ví dụ
Sau đây là mã -
import pandas as pd # Creating Pandas index index = pd.Index([5, 10, 25, 50, 75, 100, 125, 150]) # 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 ints print("\nIndex values only consists of integers?\n",index.is_integer())
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Pandas Index... Int64Index([5, 10, 25, 50, 75, 100, 125, 150], dtype='int64') Number of elements in the index... 8 The dtype object... int64 Index values only consists of integers? True