• Tutorials
  • DSA
  • Data Science
  • Web Tech
  • Courses
July 21, 2022 |3.5K Views

Pandas dataframe.notnull()

Description
Discussion

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 dataframe.notnull() function detects existing/ non-missing values in the dataframe. The function returns a boolean object having the same size as that of the object on which it is applied, indicating whether each individual value is a na value or not. All of the non-missing values gets mapped to true and missing values get mapped to false. 


Note : Characters such as empty strings ” or numpy.inf are not considered NA values. (unless you set pandas.options.mode.use_inf_as_na = True).

 

Pandas dataframe.notnull()  : https://www.geeksforgeeks.org/python-pandas-dataframe-notnull/