Tuesday, 18 December 2018

Python Basics

  1. How to get total row count of a DataFrame that has any NULL value:

np.count_nonzero(df.isnull().sum(axis=1))