We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main
https://pandas.pydata.org/docs/dev/user_guide/options.html?highlight=display.max_info_rows#available-options
it is said in this option's possible values description:
display.max_info_rows : int or None
while the code:
import pandas as pd pd.set_option('display.max_info_rows', None) df = pd.DataFrame() df.info()
causes the 'TypeError' with the message:
TypeError: '>' not supported between instances of 'int' and 'NoneType'
and the adjacent, related option 'display.max_info_columns' is described as ': int' only
fix the row: display.max_info_rows : int or None to: display.max_info_rows : int
display.max_info_rows : int
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/dev/user_guide/options.html?highlight=display.max_info_rows#available-options
Documentation problem
it is said in this option's possible values description:
display.max_info_rows : int or None
while the code:
causes the 'TypeError' with the message:
TypeError: '>' not supported between instances of 'int' and 'NoneType'
and the adjacent, related option 'display.max_info_columns' is described as ': int' only
Suggested fix for documentation
fix the row:
display.max_info_rows : int or None
to:
display.max_info_rows : int
The text was updated successfully, but these errors were encountered: