इस कार्यक्रम में, हम दो पांडा श्रृंखलाओं की तुलना करेंगे और श्रृंखला में अंतरों को प्रिंट करेंगे। अंतर से हमारा तात्पर्य उस सूचकांक स्थिति से है जिस पर तत्व मेल नहीं खाते।
एल्गोरिदम
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.Series([10,30,30,40,55,60]) print("S1:\n", s1) print("\nS2:\n", s2) difference = s1.compare(s2) print("\nDifference between the series: \n",difference)
आउटपुट
S1: 0 10 1 20 2 30 3 40 4 50 5 60 dtype: int64 S2: 0 10 1 30 2 30 3 40 4 55 5 60 dtype: int64 Difference between the series: self other 1 20.0 30.0 4 50.0 55.0
स्पष्टीकरण
उपरोक्त आउटपुट में, अंतर आउटपुट में दो कॉलम हैं। एक है 'स्व' और उसके पास 'दूसरा'। स्वयं s1 श्रृंखला को संदर्भित करता है जबकि 'अन्य' s2 श्रृंखला को संदर्भित करता है।