
- 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 - Show which entries in a Pandas Index are not NA
To show which entries in a Pandas Index are not NA, use the index.notna() method. At first, import the required libraries -
import pandas as pd import numpy as np
Creating Pandas index with some NaN values −
index = pd.Index([5, 65, np.nan, 17, 75, np.nan])
Display the Pandas index −
print("Pandas Index...\n",index)
Show which entries in a Pandas index are not-NA. Return True for non-NA entries −
print("\nCheck which entries are not-NA...\n", index.notna())
Example
Following is the code −
import pandas as pd import numpy as np # Creating Pandas index with some NaN values index = pd.Index([5, 65, np.nan, 17, 75, np.nan]) # 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) # Show which entries in a Pandas index are not-NA # Return True for non-NA entries print("\nCheck which entries are not-NA...\n", index.notna())
Output
This will produce the following output −
Pandas Index... Float64Index([5.0, 65.0, nan, 17.0, 75.0, nan], dtype='float64') Number of elements in the index... 6 The dtype object... float64 Check which entries are not-NA... [ True True False True True False]
- Related Articles
- Python - Show which entries in a Pandas Index are NA
- Python Pandas - Return an Index with entries denoting the length of each Interval in the IntervalArray
- Python Pandas - Determine if two Index objects with opposite orders are equal or not
- Python Pandas - Return a new Index with elements of index not in other and get the difference
- Python Pandas - Return a new Index with elements of index not in other but unsort the result
- Python Pandas - Determine if two Index objects are equal
- Python Pandas - Return whether all elements in the index are True
- Python Pandas - Alter index name
- What happens if the specified index is not present in the series Python Pandas?
- Python Pandas - Drop the value when all levels are NaN in a Multi-index
- Sort index in ascending order – Python Pandas
- Python Pandas - Create a DataFrame from original index but enforce a new index
- Python Pandas - Indicate duplicate index values
- Python Pandas - Return unique values in the index
- Python - Make new Pandas Index with deleting multiple index elements

Advertisements