
- Python Basic Tutorial
- Python - Home
- Python - Overview
- Python - Environment Setup
- Python - Basic Syntax
- Python - Comments
- Python - Variables
- Python - Data Types
- Python - Operators
- Python - Decision Making
- Python - Loops
- Python - Numbers
- Python - Strings
- Python - Lists
- Python - Tuples
- Python - Dictionary
- Python - Date & Time
- Python - Functions
- Python - Modules
- Python - Files I/O
- Python - Exceptions
Python Pandas CategoricalIndex - Check whether the categories have an ordered relationship
To check whether the categories have an ordered relationship, use the ordered property of the CategoricalIndex.
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 categories −
print("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories)
Check categories for ordered relationship −
print("\nDoes categories have ordered relationship...\n",catIndex.ordered)
Example
Following is the code −
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("\nDisplayingCategories from CategoricalIndex...\n",catIndex.categories) # Check categories for ordered relationship print("\nDoes categories have ordered relationship...\n",catIndex.ordered)
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') Does categories have ordered relationship... True
- Related Articles
- Python Pandas - Set the categories of the CategoricalIndex to be ordered
- Python Pandas CategoricalIndex - Rename categories
- Python Pandas CategoricalIndex - Reorder categories
- Python Pandas CategoricalIndex - Add new categories
- Python Pandas - Remove the specified categories from CategoricalIndex
- Python Pandas CategoricalIndex - Rename categories with lambda
- Python Pandas CategoricalIndex - Rename categories with dict-like new categories
- Python Pandas CategoricalIndex - Get the categories of this categorical
- Python Pandas - Get the minimum value from Ordered CategoricalIndex
- Python Pandas - Get the maximum value from Ordered CategoricalIndex
- Python Pandas - Set the categories of the CategoricalIndex to be unordered
- Python Pandas - Check whether the two Index objects have similar object attributes and types
- Python Pandas CategoricalIndex - Get the category codes of this categorical
- Python Pandas - Check whether two Interval objects overlap
- Python Pandas - Check whether two Interval objects that share an open endpoint overlap

Advertisements