Python Pandas-インデックスの要素が他にない新しいインデックスを返しますが、結果の並べ替えを解除します
インデックスの要素が他にないが結果を並べ替えない新しいインデックスを返すには、 difference()を使用します 方法。 並べ替えを設定します Falseへのパラメータ 。
まず、必要なライブラリをインポートします-
import pandas as pd
2つのパンダインデックスを作成する-
index1 = pd.Index([30, 10, 20, 50, 40]) index2 = pd.Index([80, 40, 60, 20, 55])
パンダのインデックス1とインデックス2を表示する-
print("Pandas Index1...\n",index1) print("Pandas Index2...\n",index2)
両方のインデックスの差を取得します。結果は、値が「False」の「sort」パラメーターを使用してソート解除されます-
res = index1.difference(index2, sort=False)
例
以下はコードです-
import pandas as pd # Creating two Pandas index index1 = pd.Index([30, 10, 20, 50, 40]) 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 # Results are unsorted using the "sort" parameter with value "False" res = index1.difference(index2, sort=False) # 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([30, 10, 20, 50, 40], 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([30, 10, 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