इंडेक्स को सॉर्ट करने वाले पूर्णांक इंडेक्स को वापस करने के लिए, index.argsort() . का उपयोग करें पंडों में विधि। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
पांडा इंडेक्स बनाना -
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'], name ='Products')
पांडा सूचकांक प्रदर्शित करें -
print("Pandas Index...\n",index) इंडेक्स को सॉर्ट करने वाले पूर्णांक इंडेक्स लौटाएं -
res = index.argsort()
उदाहरण
निम्नलिखित कोड है -
import pandas as pd
# Creating Pandas index
index = pd.Index(['Electronics','Accessories','Decor', 'Books', 'Toys'], name ='Products')
# 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)
# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)
res = index.argsort()
# Return the integer indices that would sort the index
print("\nThe integer indices to sort the index...\n",res)
print("\nOrdered..\n",index[res]) आउटपुट
यह निम्नलिखित आउटपुट देगा -
Pandas Index... Index(['Electronics', 'Accessories', 'Decor', 'Books', 'Toys'], dtype='object', name='Products') Number of elements in the index... 5 The dtype object... object The integer indices to sort the index... [1 3 2 0 4] Ordered.. Index(['Accessories', 'Books', 'Decor', 'Electronics', 'Toys'], dtype='object', name='Products')