Checking Missing / Null Values in Pandas DataFrame || Python

Опубликовано: 16 Октябрь 2024
на канале: Data Science Lovers
1,379
23

'Data Analytics Project For Resume' - .... * will be uploaded soon * ....

!! Checking For Missing Values in DataFrame !!

1. isna( )
Syntax : df.isna( ).sum( ) ------ To show the count of missing (null) values in each column
2. isnull( )
Syntax : df.isnull( ).sum( ) ------ Alternatively, To show the count of missing (null) values in each column
3. notnull( )
Syntax : df.notnull( ).sum( ) ------ To show the count of non-null values in each column
4. notna( )
Syntax : df.notna( ).sum( ) ----- Alternatively, To show the count of non-null values in each column

------------------------------------------
Buy 'Data Analyst - Self Study Material' ( Rs.450 ) - https://rzp.io/l/dslstudymaterial
-------------------------------------------
Buy 'Pandas Notes' (Rs.99) - https://rzp.io/l/pandas-notes
-------------------------------------------
Contact Mail Id : [email protected]
------------------------------------------
🇮🇳 DATA SCIENCE LOVERS 🧡💛💚

-------------------------------------------

You must check our projects videos :

Project 8 -    • Project - 8 | Data Analysis with Pyth...  
Project 7 -    • Project - 7 | Data Analysis with Pyth...  
Project 6 -    • Project - 6 | Data Analysis with Pyth...  
Project 5 -    • Project - 5 | Data Analysis with Pyth...  
Project 4 -    • Project - 4 | Data Analysis with Pyth...  
Project 3 -    • Project - 3 | Data Analysis with Pyth...  
Project 2 -    • Project - 2 | Data Analysis with Pyth...  
Project 1 -    • Project - 1 | Data Analysis with Pyth...  

--------------------------------------------

#python #pandas #DSL