i need to show all the nulls values in the dataframe in a Series using sum(), but I can only see the firsts 5 values and the last ones.
Asked
Active
Viewed 45 times
0
-
Yes, it does! Thank you! I used pd.set_option('display.max_rows', None) df.isna().sum() – Mariana Matos Feb 26 '21 at 13:01
1 Answers
-1
If you want to see everything on screen you will need to change your pandas display settings:
pandas.options.display.max_rows =

acrobat
- 812
- 4
- 7