Pandas Index가 객체 dtype인지 확인하려면 index.is_object()를 사용하세요. 방법. 먼저 필요한 라이브러리를 가져옵니다. -
import pandas as pd
팬더 인덱스 생성 -
index = pd.Index(["Electronics", 6, 10.5, "Accessories", 25.6, 30])
판다 인덱스 표시 -
print("Pandas Index...\n",index)
인덱스 값에 객체 dtype이 있는지 확인 -
print("\nIs the Index of object dtype?\n", index.is_object())
예시
다음은 코드입니다 -
import pandas as pd # Creating Pandas index index = pd.Index(["Electronics", 6, 10.5, "Accessories", 25.6, 30]) # 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 object dtype print("\nIs the Index of object dtype?\n", index.is_object())
출력
이것은 다음과 같은 출력을 생성합니다 -
Pandas Index... Index(['Electronics', 6, 10.5, 'Accessories', 25.6, 30], dtype='object') Number of elements in the index... 6 The dtype object... object Is the Index of object dtype? True