Python Pandas-他にはないインデックスの要素を含む新しいインデックスを返し、違いを取得します
他にないインデックスの要素を含む新しいインデックスを返し、差を取得するには、 index1.difference(index2)を使用します パンダのメソッド。
まず、必要なライブラリをインポートします-
import pandas as pd
2つのパンダインデックスを作成する-
index1 = pd.Index([10, 20, 30, 40, 50]) index2 = pd.Index([80, 40, 60, 20, 55])
パンダのインデックス1とインデックス2を表示する
print("Pandas Index1...\n",index1)
print("Pandas Index2...\n",index2) 両方のインデックスの差を取得します-
res = index1.difference(index2)
例
以下はコードです-
import pandas as pd
# Creating two Pandas index
index1 = pd.Index([10, 20, 30, 40, 50])
index2 = pd.Index([80, 40, 60, 20, 55])
# Display the Pandas index1 and index2
print("Pandas Index1...\n",index1)
print("Pandas Index2...\n",index2)
# Return the number of elements in Index1 and Index2
print("\nNumber of elements in index1...\n",index1.size)
print("\nNumber of elements in index2...\n",index2.size)
# Get the difference of both the indexes
res = index1.difference(index2)
# Difference of both the indexes i.e. return a new Index with elements of index not in other
print("\nDifference...\n",res) 出力
これにより、次の出力が生成されます-
Pandas Index1... Int64Index([10, 20, 30, 40, 50], dtype='int64') Pandas Index2... Int64Index([80, 40, 60, 20, 55], dtype='int64') Number of elements in index1... 5 Number of elements in index2... 5 Difference... Int64Index([10, 30, 50], dtype='int64')
-
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