Python | Pandas Index.isnull() Last Updated : 17 Dec, 2018 Comments Improve Suggest changes Like Article Like Report Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.isnull() function detect missing values. It return a boolean same-sized object indicating if the values are NA. NA values, such as None, numpy.NaN or pd.NaT, get mapped to True values. Everything else get mapped to False values. Characters such as empty strings ‘’ or numpy.inf are not considered NA values (unless you set pandas.options.mode.use_inf_as_na = True). Syntax: Index.isnull() Parameters : Doesn’t take any parameter. Returns : A boolean array of whether my values are NA Example #1: Use Index.isnull() function to check if any of the value in the Index is a NaN value. Python3 # importing pandas as pd import pandas as pd # Creating the Index idx = pd.Index(['Labrador', None, 'Beagle', 'Mastiff', 'Lhasa', None, 'Husky', 'Beagle']) # Print the Index idx Output : Now we check for the missing values in the Index. Python3 # checks for missing values. idx.isnull() Output : The function returned an array object having the same size as that of the index. True value means the index label was missing and False value means the index label was present. Example #2: Use Index.isnull() function to check if the missing Datetime Indexes are considered NaN values or not. Python3 # importing pandas as pd import pandas as pd # Creating the Datetime Index idx = pd.DatetimeIndex([pd.Timestamp('2015-02-11'), None, pd.Timestamp(''), pd.NaT]) # Print the Datetime Index idx Output : Now we will check if the labels in the Datetime Index are present or missing. Python3 # test whether the passed Datetime Index # labels are missing or not. idx.isnull() Output : As we can see in the output, the function has returned an array object having the same size as that of the Datetime Index. True value means the index label are missing and False value means the index label are not missing. Comment More infoAdvertise with us Next Article Python | Pandas Index.isnull() S Shubham__Ranjan Follow Improve Article Tags : Technical Scripter Python Python-pandas Python pandas-indexing Practice Tags : python Similar Reads Python | Pandas Index.isna() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.isna() function detect missing values. It return a boolean same-sized obj 2 min read Python | Pandas Index.isin() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.isin() function return a boolean array where the index values are in valu 2 min read Python | Pandas Index.notnull() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.notnull() function detect existing (non-missing) values. This function re 2 min read Python | Pandas Index.min() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.min() function returns the minimum value of the Index. The function works 2 min read Python | Pandas Index.nunique() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.nunique() function return number of unique elements in the object. It ret 2 min read Python | Pandas Index.notna() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier.Pandas Index.notna() function Detect existing (non-missing) values. Return a boolean sa 2 min read Python | Pandas Index.is_unique Pandas Index is an immutable ndarray implementing an ordered, sliceable set. It is the basic object which stores the axis labels for all pandas objects. Pandas Index.is_unique attribute return True if the underlying data in the given Index object is unique else it return False. Syntax: Index.is_uniq 2 min read Python | Pandas Index.is_monotonic Pandas Index is an immutable ndarray implementing an ordered, sliceable set. It is the basic object which stores the axis labels for all pandas objects. Pandas Index.is_monotonic attribute is an alias for is_monotonic_increasing. It return True if the underlying data in the given Index object is mon 2 min read Python | Pandas Index.intersection() Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric python packages. Pandas is one of those packages and makes importing and analyzing data much easier. Pandas Index.intersection() function form the intersection of two Index objects. This 2 min read Like