Python
 Computer >> コンピューター >  >> プログラミング >> Python

Python-Pandasインデックスがオブジェクトdtypeであるかどうかを確認します


パンダインデックスがオブジェクト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

  1. Python-PandasIndexがカテゴリデータを保持しているかどうかを確認します

    Pandas Indexがカテゴリデータを保持しているかどうかを確認するには、 index.is_categorical()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd タイプをカテゴリに設定してPandasインデックスを作成する astype()を使用する メソッド- index = pd.Index(["Electronics","Accessories","Furniture"]).astype("category") パンダのイン

  2. Python-PandasIndexがブール値のみで構成されているかどうかを確認します

    パンダインデックスがブール値のみで構成されているかどうかを確認するには、 index.is_boolean()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成 index = pd.Index([True, True, False, False, True, True, True]) パンダのインデックスを表示する- print("Pandas Index...\n",index) インデックス値にブール値のみがあるかどうかを確認します- print("\nInde