-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
New issue
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
BUG/API: info repr should honor display.max_info_columns #7130
BUG/API: info repr should honor display.max_info_columns #7130
Conversation
@@ -210,6 +210,11 @@ API changes | |||
# this now raises for arith ops like ``+``, ``*``, etc. | |||
NotImplementedError: operator '*' not implemented for bool dtypes | |||
|
|||
- The `verbose` keyword in ``DataFrame.info()``, which controls whether to shorten the ``info`` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would move this to the display section (right below)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will do, I wasn't sure whether it was more API or more display.
I guess this only closes half of #6939, There's still the second bullet:
|
let's create a new issue for but this IS an API change yes? as |
I didn't change anything with the config. The only API change was to the |
@TomAugspurger sorry...you are right....was thinking about something else....ok...gr8 then.... merge when ready / green (and I would separate out the |
Ok. I'll open one up. The test failure was a mistake in the test. Should pass now. |
BUG/API: info repr should honor display.max_info_columns
excellent! |
Closes #6939
I think this is what we agreed on. The tests are split up. In
test_format
we do more of the following global settings tests. The rest are intest_frame
which directly calldf.info()
and I'm basically testing that the kwargs there override the global settings.