I am busy with Jupyter notebook and I need to check the first 10 entries for NaN in my Dataframe
The Code that I tried to check the first 10 entries for NaN is as follow
print("\nCount NaN in first 10 entries\n",article_read.sample(10).isnull().sum())#Count NaN in first 10 entries
Thanks in advance