I am reading output of dataframe.isnull().sum() but it shows as collapsed. How can I expand the cell so that i can see all columsn NAs count. There are total 81 columsn but i am seeing only few
Asked
Active
Viewed 1,331 times
0
-
Does this answer your question? [resize ipython notebook output window](https://stackoverflow.com/questions/18770504/resize-ipython-notebook-output-window) – Cactus Philosopher Dec 12 '19 at 02:15
-
Does this answer your question? [Pandas: Setting no. of max rows](https://stackoverflow.com/questions/16424493/pandas-setting-no-of-max-rows) – AMC Dec 12 '19 at 02:56
-
What makes you think this is caused by the notebook? – AMC Dec 12 '19 at 02:57
2 Answers
0
Try add this in your code :
import pandas as pd
pd.set_option('display.max_rows', None)

GiovaniSalazar
- 1,999
- 2
- 8
- 15
0
You can also print the entire data frame as well:
print(df.to_string())

oppressionslayer
- 6,942
- 2
- 7
- 24