PythonPandas-重複する値が完全に削除されたインデックスを返す
重複する値が完全に削除されたインデックスを返すには、 index.drop_duplicates()を使用します メソッド。
まず、必要なライブラリをインポートします-
import pandas as pd
いくつかの重複を含むインデックスの作成-
index = pd.Index(['Car','Bike','Airplane','Ship','Airplane'])
インデックスを表示-
print("Pandas Index with duplicates...\n",index)
重複する値を削除してインデックスを返します。値が「False」の「keep」パラメーターは、重複したエントリーの各セットのすべてのオカレンスをドロップします-
print("\nIndex with duplicate values removed (drops all occurrences)...\n", index.drop_duplicates(keep = False))
例
以下はコードです-
import pandas as pd # Creating the index with some duplicates index = pd.Index(['Car','Bike','Airplane','Ship','Airplane']) # Display the index print("Pandas Index with duplicates...\n",index) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # get the bytes in the data print("\nGet the bytes...\n",index.nbytes) # get the dimensions of the data print("\nGet the dimensions...\n",index.ndim) # Return Index with duplicate values removed # The "keep" parameter with value "False" drops all occurrences for each set of duplicated entries print("\nIndex with duplicate values removed (drops all occurrences)...\n", index.drop_duplicates(keep = False))
出力
これにより、次のコードが生成されます-
Pandas Index with duplicates... Index(['Car', 'Bike', 'Airplane', 'Ship', 'Airplane'], dtype='object') The dtype object... object Get the bytes... 40 Get the dimensions... 1 Index with duplicate values removed (drops all occurrences)... Index(['Car', 'Bike', 'Ship'], dtype='object')
-
PythonPandas-マスクで設定された値の新しいインデックスを返します
マスクで設定された値の新しいインデックスを返すには、 index.putmask()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index([5, 65, 10, 17, 75, 40]) パンダのインデックスを表示する- print("Pandas Index...\n",index) 値111-で3未満のインデックス値をマスクして配置します print("\nMask...\n",index.putmask(index &
-
PythonPandas-インデックスによって選択された値の新しいインデックスを返します
インデックスによって選択された値の新しいインデックスを返すには、 index.take()を使用します パンダのメソッド。まず、必要なライブラリをインポートします- import pandas as pd パンダインデックスの作成- index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'], name ='Products') パンダのインデックスを表示する- print("Pandas Index