Python
 Computer >> コンピューター >  >> プログラミング >> Python

Python Pandas-2つのIndexオブジェクトの対称差を計算し、結果の並べ替えを解除します


2つのIndexオブジェクトの対称差を計算し、結果の並べ替えを解除するには、 symmetric_difference()を使用します。 パンダのメソッド。並べ替えを解除するには、並べ替えを使用します パラメータを設定し、 Falseに設定します 。

まず、必要なライブラリをインポートします-

import pandas as pd

2つのパンダインデックスを作成する-

index1 = pd.Index([50, 30, 20, 40, 10])
index2 = pd.Index([40, 10, 60, 20, 55])

パンダのインデックス1とインデックス2を表示する-

print("Pandas Index1...\n",index1)
print("Pandas Index2...\n",index2)

対称差を実行します。値がFalse-

の「sort」パラメータを使用して結果の並べ替えを解除します
res = index1.symmetric_difference(index2, sort=False)

以下はコードです-

import pandas as pd

# Creating two Pandas index
index1 = pd.Index([50, 30, 20, 40, 10])
index2 = pd.Index([40, 10, 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)

# Perform symmetric difference
# Unsort the result using the "sort" parameter
res = index1.symmetric_difference(index2, sort=False)

# Symmetric difference of both the indexes
print("\nThe index1 and index2 symmetric difference with unsorted result...\n",res)

出力

これにより、次の出力が生成されます-

Pandas Index1...
Int64Index([50, 30, 20, 40, 10], dtype='int64')
Pandas Index2...
Int64Index([40, 10, 60, 20, 55], dtype='int64')

Number of elements in index1...
5

Number of elements in index2...
5

The index1 and index2 symmetric difference with unsorted result...
Int64Index([50, 30, 60, 55], dtype='int64')

  1. Pythonパンダ–2つのデータフレームの違いを見つける

    2つのDataFrameの違いを見つけるには、その同等性を確認する必要があります。また、列の同等性を確認してください。 2つの列を持つDataFrame1を作成しましょう- dataFrame1 = pd.DataFrame( { "Car": ['BMW', 'Lexus', 'Audi', 'Mustang', 'Bentley', 'Jaguar'], "Units": [100, 150, 110, 80, 110, 9

  2. 2つのパンダシリーズを比較し、違いを印刷する

    このプログラムでは、2つのパンダシリーズを比較し、シリーズの違いを印刷します。違いは、要素が一致しなかったインデックス位置を意味します。 アルゴリズム Step 1: Define two Pandas series, s1 and s2. Step 2: Compare the series using compare() function in the Pandas series. Step 3: Print their difference. サンプルコード import pandas as pd s1 = pd.Series([10,20,30,40,50,60]) s2 = pd.