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
getitem/setitem magic:
pd.options['expand'] = True
context manager for temporary options setting:
with pd.set_option('expand', False): ...
The text was updated successfully, but these errors were encountered:
you're completely right about the context manager, will do.
Don't see the upside for doing item magic:
at least doing pd.options.print.max_cols would get you tab-completion and express the hirerchy of keys in a natural way.
pd.options.print.max_cols
Unless it's really that annoying for everyone, I suggest leaving as is.
Sorry, something went wrong.
fair point, was thinking people might be more familiar with dict-like access to options, but i think it's fine to leave as is.
no urgency on the context manager either, just jotting down my thoughts
IPython tab completion magic would be very nice e g.
options.print.line_width = 120
done and done via cc2a22a
No branches or pull requests
getitem/setitem magic:
pd.options['expand'] = True
context manager for temporary options setting:
The text was updated successfully, but these errors were encountered: