Python | Pandas Series.notna() Last Updated : 11 Feb, 2019 Comments Improve Suggest changes Like Article Like Report Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.notna() function Detect existing (non-missing) values. This function return a boolean object having the size same as the object, indicating if the values are missing values or not. Non-missing values get mapped to True. Characters such as empty strings '' or numpy.inf are not considered NA values (unless pandas.options.mode.use_inf_as_na = True is set). NA values, such as None or numpy.NaN, get mapped to False values. Syntax: Series.notna() Parameter : None Returns : Series Example #1: Use Series.notna() function to detect all the non-missing values in the given series object. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series([10, 25, 3, 11, 24, 6]) # Create the Index index_ = ['Coca Cola', 'Sprite', 'Coke', 'Fanta', 'Dew', 'ThumbsUp'] # set the index sr.index = index_ # Print the series print(sr) Output : Now we will use Series.notna() function to detect the non-missing values in the series object. Python3 # detect non-missing value result = sr.notna() # Print the result print(result) Output : As we can see in the output, the Series.notna() function has returned a boolean object. True indicates that the corresponding value is not missing. False value indicates that the value is missing. All the values are True in this series as there is no missing values. Example #2: Use Series.notna() function to detect all the non-missing values in the given series object. Python3 # importing pandas as pd import pandas as pd # Creating the Series sr = pd.Series([19.5, 16.8, None, 22.78, None, 20.124, None, 18.1002, None]) # Print the series print(sr) Output : Now we will use Series.notna() function to detect the non-missing values in the series object. Python3 # detect non-missing value result = sr.notna() # Print the result print(result) Output : As we can see in the output, the Series.notna() function has returned a boolean object. True indicates that the corresponding value is not missing. False value indicates that the value is missing. Comment More infoAdvertise with us Next Article Python | Pandas Series.notna() S Shubham__Ranjan Follow Improve Article Tags : Python Pandas Python-pandas Python pandas-series-methods AI-ML-DS With Python +1 More Practice Tags : python Similar Reads Python | Pandas Series.notnull() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.notnull() function Detect exi 2 min read Python | Pandas Series.dropna() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.dropna() function return a ne 2 min read Python | Pandas Series.isna() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.isna() function detect missin 2 min read Python | Pandas Series.ne() 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 series.ne() is used to compare every element of Caller series with passed serie 3 min read Python | Pandas Series.lt() 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 Series.lt() is used to compare two series and return Boolean value for every re 3 min read Python | Pandas Series.gt() 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 Series.gt() is used to compare two series and return Boolean value for every res 3 min read Python | Pandas Series.count() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.count() function return the c 2 min read Python | Pandas Series.all() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.all() function return whether 3 min read Python | Pandas Series.min() Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both integer- and label-based indexing and provides a host of methods for performing operations involving the index. Pandas Series.min() function return the mod 3 min read Python | Pandas Series.iat 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 series is a One-dimensional ndarray with axis labels. The labels need not be un 2 min read Like