PythonPandas-作成済みのIndexオブジェクトのインデックス名を設定します
作成済みのIndexオブジェクトのインデックス名を設定するには、 index.set_names()を使用します パンダのメソッド。まず、必要なライブラリをインポートします-
import pandas as pd
パンダインデックスの作成-
index = pd.Index(["Electronics", "Mobile Phones", "Accessories", "Home Decor", "Books"])
パンダのインデックスを表示する-
print("Pandas Index...\n",index)
インデックスの名前を設定します-
print("\nSet the index name...\n",index.set_names('Products'))
例
以下はコードです-
import pandas as pd # Creating Pandas index index = pd.Index(["Electronics", "Mobile Phones", "Accessories", "Home Decor", "Books"]) # 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) # set the name of index print("\nSet the index name...\n",index.set_names('Products'))
出力
これにより、次の出力が生成されます-
Pandas Index... Index(['Electronics', 'Mobile Phones', 'Accessories', 'Home Decor', 'Books'], dtype='object') Number of elements in the index... 5 The dtype object... object Set the index name... Index(['Electronics', 'Mobile Phones', 'Accessories', 'Home Decor', 'Books'], dtype='object', name='Products')
-
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-があるかどうかを
-
Python Pandasの列名から列インデックスを取得するにはどうすればよいですか?
Python Pandasの列名から列インデックスを取得するには、 get_loc()を使用できます。 メソッド。 ステップ- 2次元、サイズ変更可能、潜在的に異種の表形式データ、 dfを作成します 。 入力DataFrame、 dfを印刷します 。 df.columns を使用して、DataFrameの列を検索します 。 手順3の列を印刷します。 変数を初期化しますcolumn_name 。 column_name のインデックスの場所、つまりインデックスを取得します 。 column_nameのインデックスを印刷します 。 例- import pandas as pd