
- 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 - Remove the specified categories from CategoricalIndex
To remove the specified categories from CategoricalIndex, use the remove_categories() 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"])
Remove categories using remove_categories(). Set the categories to be removed as a parameter. Values which were in the removed categories will be set to NaN −
print("\nCategoricalIndex after removing specified categories...\n", catIndex.remove_categories(["p", "q"]))
Example
Following is the code −
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 CategoricalIndex print("CategoricalIndex...\n",catIndex) # Get the categories print("\nDisplaying Categories from CategoricalIndex...\n",catIndex.categories) # Remove categories using remove_categories() # Set the categories to be removed as a parameter # Values which were in the removed categories will be set to NaN print("\nCategoricalIndex after removing specified categories...\n", catIndex.remove_categories(["p", "q"]))
Output
This will produce the following output −
CategoricalIndex... 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') CategoricalIndex after removing specified categories... CategoricalIndex([nan, nan, 'r', 's', nan, nan, 'r', 's'], categories=['r', 's'], ordered=True, dtype='category')
- Related Articles
- Python Pandas CategoricalIndex - Rename categories
- Python Pandas CategoricalIndex - Reorder categories
- Python Pandas CategoricalIndex - Add new categories
- 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 - Set the categories of the CategoricalIndex to be unordered
- Python Pandas - Set the categories of the CategoricalIndex to be ordered
- Python Pandas CategoricalIndex - Check whether the categories have an ordered relationship
- Python Pandas - Get the minimum value from Ordered CategoricalIndex
- Python Pandas - Get the maximum value from Ordered CategoricalIndex
- Python Pandas CategoricalIndex - Get the category codes of this categorical
- How to remove a specified row From the Pandas Series Using Drop() method?
- Python Pandas - Determine if two CategoricalIndex objects contain the same elements
- Python - Remove duplicate values from a Pandas DataFrame

Advertisements