.. and, if so, what are those max limits of pandas?
Sorry, this question seems elementary but I couldn't find an answer at pandas.pydata.org.
The limit is your memory. ( but these limits are really large )
But when you want to display a DataFrame table in "Jupyter Notebook", there is some predefined limits.
For example you can:
print (pd.options.display.max_columns) # <--- this will display your limit pd.options.display.max_columns = 500 # this will set limit of columns to 500
The same idea work with rows:
display.max_rows
More details on: https://pandas.pydata.org/pandas-docs/stable/options.html
1.4m articles
1.4m replys
5 comments
57.0k users