PythonPandas-インデックスに一意の値を返します
インデックスで一意の値を返すには、 index.unique()を使用します パンダのメソッド。まず、必要なライブラリをインポートします-
import pandas as pd
パンダインデックスの作成-
index = pd.Index([10, 50, 70, 10, 90, 50, 10, 30])
パンダのインデックスを表示する-
print("Pandas Index...\n",index)
インデックスから一意の値を取得します。一意の値が出現順に返されますが、これはソートされません-
index.unique()
例
以下はコードです-
import pandas as pd # Creating Pandas index index = pd.Index([10, 50, 70, 10, 90, 50, 10, 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) # get the unique values from the index # Unique values are returned in order of appearance, this does NOT sort print("\nUnique values from the Index..\n", index.unique())>
出力
これにより、次の出力が生成されます-
Pandas Index... Int64Index([10, 50, 70, 10, 90, 50, 10, 30], dtype='int64') Number of elements in the index... 8 The dtype object... int64 Unique values from the Index.. Int64Index([10, 50, 70, 90, 30], dtype='int64')からの値
-
Python-Pandasインデックスの最大値を返します
パンダインデックスの最大値を返すには、 index.max()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成 index = pd.Index([10, 20, 70, 40, 90, 50, 25, 30]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 最大値を取得- print("\nMaximum value..\n", index.max()) 例 以下はコードです- import pandas a
-
Python-Pandasインデックスの最小値を返します
パンダインデックスの最小値を返すには、 index.min()を使用します 方法。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 最小値を取得- print("\nMinimum value..\n", index.min()) 例 以下はコードです-