Issue
Currently my notebook is showing rows like this. However, I see other people notebooks showing like this, despite of mine having the max rows set to 60.
What do I need to do to make Jupyter Notebook display more rows?
Solution
This code will not work on jupiter!!!
pd.set_option('display.max_rows', 500)
data1.sex
if you want to see all rows :
pd.options.display.max_rows = None
data1.sex
If you just want to see 60 rows:
pd.set_option('display.max_rows', 60)
data1.sex.head(60)
Answered By - Deepofspace
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.