आदेशित श्रेणीबद्ध सूचकांक से अधिकतम मूल्य प्राप्त करने के लिए, पंडों में catIndex.max() विधि का उपयोग करें।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
"श्रेणियों" पैरामीटर का उपयोग करके श्रेणीबद्ध के लिए श्रेणियां सेट करें। "आदेशित" पैरामीटर -
. का उपयोग करके श्रेणीबद्ध के रूप में आदेशित व्यवहार करेंcatIndex = pd.CategoricalIndex( ["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"] )
श्रेणीबद्ध सूचकांक प्रदर्शित करें -
print("Categorical Index...\n",catIndex) अधिकतम मूल्य प्राप्त करें -
print("\nMaximum value from CategoricalIndex...\n",catIndex.max()) उदाहरण
निम्नलिखित कोड है -
import pandas as pd
# CategoricalIndex can only take on a limited, and usually fixed, number of possible values.
# Set the categories for the categorical using the "categories" parameter
# Treat the categorical as ordered using the "ordered" parameter
catIndex = pd.CategoricalIndex(
["p", "q", "r", "s","p", "q", "r", "s"], ordered=True, categories=["p", "q", "r", "s"]
)
# Display the Categorical Index
print("Categorical Index...\n",catIndex)
# Get the categories
print("\nDisplaying Categories from CategoricalIndex...\n",catIndex.categories)
# Get the max value
print("\nMaximum value from CategoricalIndex...\n",catIndex.max()) आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Categorical Index... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category') Displaying Categories from CategoricalIndex... Index(['p', 'q', 'r', 's'], dtype='object') Maximum value from CategoricalIndex... Sसे अधिकतम मान