- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Python Pandas - Get the minimum value from Ordered CategoricalIndex
To get the minimum value from Ordered CategoricalIndex, use the catIndex.min() method in Pandas. At first, import the required libraries −
import pandas as pd
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 min value −
print("\nMinimum value from CategoricalIndex...\n",catIndex.min())
Example
Following is the code −
import pandas as pd # CategoricalIndex is the Index based on an underlying Categorical # 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("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories) # Get the min value print("\nMinimum value from CategoricalIndex...\n",catIndex.min())
Output
This will produce the following output −
Categorical Index... CategoricalIndex(['p', 'q', 'r', 's', 'p', 'q', 'r', 's'], categories=['p', 'q', 'r', 's'], ordered=True, dtype='category') DisplayingCategories from CategoricalIndex... Index(['p', 'q', 'r', 's'], dtype='object') Minimum value from CategoricalIndex... P
- Related Articles
- Python Pandas - Get the maximum value from Ordered CategoricalIndex
- Python Pandas - Set the categories of the CategoricalIndex to be ordered
- Python Pandas CategoricalIndex - Check whether the categories have an ordered relationship
- Python Pandas CategoricalIndex - Get the categories of this categorical
- Python Pandas - Remove the specified categories from CategoricalIndex
- Python Pandas CategoricalIndex - Get the category codes of this categorical
- Python Pandas CategoricalIndex - Rename categories
- Python Pandas CategoricalIndex - Reorder categories
- Python Pandas CategoricalIndex - Add new categories
- Python Pandas CategoricalIndex - Rename categories with lambda
- Python - Return the minimum value of the Pandas Index
- Python Pandas - Return the minimum value of the Timedelta object
- Python Pandas - Set the categories of the CategoricalIndex to be unordered
- How to Get the Position of Minimum Value of a pandas Series?
- Python Pandas - Determine if two CategoricalIndex objects contain the same elements

Advertisements