
- 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 - Return Index without NaN values
To return Index without NaN values, use the index.dropna() method in Pandas. At first, import the required libraries −
import pandas as pd import numpy as np
Creating Pandas index with some NaN values as well −
index = pd.Index([50, 10, 70, np.nan, 90, 50, np.nan, np.nan, 30])
Display the Pandas index −
print("Pandas Index...\n",index)
Drop only the NaN values −
print("\nThe Index object after removing NaN values...\n",index.dropna())
Example
Following is the code −
import pandas as pd import numpy as np # Creating Pandas index with some NaN values as well index = pd.Index([50, 10, 70, np.nan, 90, 50, np.nan, np.nan, 30]) # Display the Pandas index print("Pandas Index...\n",index) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return the dtype of the data print("\nThe dtype object...\n",index.dtype) # Drop only the NaN values print("\nThe Index object after removing NaN values...\n",index.dropna())
Output
This will produce the following output −
Pandas Index... Float64Index([50.0, 10.0, 70.0, nan, 90.0, 50.0, nan, nan, 30.0], dtype='float64') Number of elements in the index... 9 The dtype object... float64 The Index object after removing NaN values... Float64Index([50.0, 10.0, 70.0, 90.0, 50.0, 30.0], dtype='float64')
- Related Articles
- Python Pandas - Return a Series containing counts of unique values from Index object considering NaN values as well
- Python Pandas - Return unique values in the index
- Python Pandas - Return Index with duplicate values removed
- Python Pandas - Return a list of the Index values
- Python Pandas - Return Index with duplicate values completely removed
- Python Pandas - Fill NaN values with the specified value in an Index object
- Python Pandas - Return the memory usage of the Index values
- Python Pandas - Fill missing columns values (NaN) with constant values
- Python Pandas - Return Index with duplicate values removed except the first occurrence
- Python Pandas - Return Index with duplicate values removed keeping the last occurrence
- Python Pandas - Sort index values and also return the indices that would sort the index
- Python Pandas - Fill NaN values using an interpolation method
- Python Pandas - Return a new Index of the values selected by the indices
- Python Pandas - Return a new Index of the values set with the mask
- Python Pandas - Return a Series containing counts of unique values from Index object

Advertisements