pandas count nan values in column code example
Example 1: count na pandas
>>> df = pd.DataFrame({"Person":
... ["John", "Myla", "Lewis", "John", "Myla"],
... "Age": [24., np.nan, 21., 33, 26],
... "Single": [False, True, True, True, False]})
>>> df
Person Age Single
0 John 24.0 False
1 Myla NaN True
2 Lewis 21.0 True
3 John 33.0 True
4 Myla 26.0 False
df.count()
Person 5
Age 4
Single 5
dtype: int64
Example 2: find the number of nan per column pandas
In [1]: s = pd.Series([1,2,3, np.nan, np.nan])
In [4]: s.isna().sum()
Out[4]: 2