गैर-विशिष्ट मूल्यों वाली वस्तुओं के लिए भी नई अनुक्रमणिका के लिए अनुक्रमणिका और मुखौटा की गणना करने के लिए, index.get_indexer_non_unique() का उपयोग करें method.Python Pandas - गैर-विशिष्ट मूल्यवान वस्तुओं के लिए भी नए इंडेक्स के लिए इंडेक्सर और मास्क की गणना करें
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
कुछ गैर-अद्वितीय मानों के साथ पांडा अनुक्रमणिका बनाना -
index = pd.Index([10, 20, 30, 40, 40, 50, 60, 60, 60, 70])
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index)
कंप्यूट इंडेक्सर और मास्क। -1 द्वारा चिह्नित, क्योंकि यह अनुक्रमणिका में नहीं है। यह गैर-अद्वितीय इंडेक्स ऑब्जेक्ट मानों की गणना भी करता है -
print("\nGet the indexes...\n",index.get_indexer_non_unique([30, 40, 90, 100, 50, 60]))
उदाहरण
निम्नलिखित कोड है -
import pandas as pd # Creating Pandas index with some non-unique values index = pd.Index([10, 20, 30, 40, 40, 50, 60, 60, 60, 70]) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Compute indexer and mask # Marked by -1, as it is not in index # This also computes non-unique Index object values print("\nGet the indexes...\n",index.get_indexer_non_unique([30, 40, 90, 100, 50, 60]))
आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index... Int64Index([10, 20, 30, 40, 40, 50, 60, 60, 60, 70], dtype='int64') Number of elements in the index... 10 Get the indexes... (array([ 2, 3, 4, -1, -1, 5, 6, 7, 8], dtype=int64), array([2, 3], dtype=int64))