

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 - Create an Index based on an underlying Categorical
To create an Index based on an underlying Categorical, use the pandas.CategoricalIndex() method.
At first, import the required libraries −
import pandas as pd
CategoricalIndex is the Index based on an underlying Categorical. 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)
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()) # Get the max value print("\nMaximum value from CategoricalIndex...\n",catIndex.max())
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 Maximum value from CategoricalIndex... S
- Related Questions & Answers
- Python Pandas - Create an Index with values cast to dtypes
- How to create Python objects based on an XML file?
- Python Pandas - Create an IntervalIndex
- Python Pandas - Repeat elements of an Index
- Python - Check if the Pandas Index holds categorical data
- How to subset an R data frame based on numerical and categorical column?
- Python Pandas - Return the number of bytes in the underlying Index data
- Python Pandas - Return the Number of elements in the underlying Index data
- Create an object based on 2 others in JavaScript
- Python Pandas - Set index name for an already created Index object
- Filter an object based on an array JavaScript
- How to find the sum based on a categorical variable in an R data frame?
- How to create an ID column in R based on categories?
- How to create two lines using ggplot2 based on a categorical column in R?
- How to subset an R data frame with condition based on only one value from categorical column?
Advertisements