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
The first code block
pd.set_option('max_rows', 400)
generates an error (OptionError: Pattern matched multiple keys) when I run it (with Pandas 1.5.0).
OptionError: Pattern matched multiple keys
According to the docs,
The following will not work because it matches multiple option names, e.g. display.max_colwidth, display.max_rows, display.max_columns:
Using the code from earlier chapters works fine, tho:
pd.options.display.max_rows = 600 pd.options.display.max_colwidth = 400
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The first code block
generates an error (
OptionError: Pattern matched multiple keys
) when I run it (with Pandas 1.5.0).According to the docs,
Using the code from earlier chapters works fine, tho:
The text was updated successfully, but these errors were encountered: