Computer >> कंप्यूटर >  >> प्रोग्रामिंग >> Python

पायथन पंडों - पूर्णांक सूचकांकों को लौटाएं जो सूचकांक को क्रमबद्ध करेंगे

इंडेक्स को सॉर्ट करने वाले पूर्णांक इंडेक्स को वापस करने के लिए, 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')

  1. पायथन - पंडों के सूचकांक का अधिकतम मूल्य लौटाएं

    पांडा सूचकांक का अधिकतम मूल्य वापस करने के लिए, index.max() . का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना index = pd.Index([10, 20, 70, 40, 90, 50, 25, 30]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n",index) अधि

  1. पायथन - पंडों के सूचकांक का न्यूनतम मूल्य लौटाएं

    पांडा इंडेक्स का न्यूनतम मान वापस करने के लिए, index.min() . का उपयोग करें तरीका। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd पांडा इंडेक्स बनाना - index = pd.Index([10.5, 20.4, 40.5, 25.6, 5.7, 6.8, 30.8, 50.2]) पांडा सूचकांक प्रदर्शित करें - print("Pandas Index...\n&qu

  1. पायथन पांडा - इंटरवलएरे में प्रत्येक अंतराल के मध्य बिंदु को एक सूचकांक के रूप में लौटाएं

    इंडेक्स के रूप में इंटरवलएरे में प्रत्येक अंतराल के मध्य बिंदु को वापस करने के लिए, array.mid का उपयोग करें संपत्ति। सबसे पहले, सबसे पहले, आवश्यक पुस्तकालयों को आयात करें - import pandas as pd दो इंटरवल ऑब्जेक्ट बनाएं। दोनों मान के साथ बंद पैरामीटर का उपयोग करके सेट किए गए बंद अंतराल - interval1 =