We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
In [16]: from pandas.util.testing import makeCustomDataframe as mkdf ...: df= mkdf(10, 3) ...: df.columns = ['a','a','b'] ...: cols = ['b','a'] ...: df[['b','a']].columns Out[16]: Index([a, a, b], dtype=object)
expected to see
['b','a','a']
Once fixed, can relax format.py:CSVFormatter raising NotImplementedError() on cols selection with dupe columns, for the new engine only. see #3457 .
edit: #3509 removed that limitation from CSVFormatter
The text was updated successfully, but these errors were encountered:
I see where this is broken....
Sorry, something went wrong.
looks like it always returns in the index in the original order......
closed by #3459
Successfully merging a pull request may close this issue.
expected to see
Once fixed, can relax format.py:CSVFormatter raising NotImplementedError()
on cols selection with dupe columns, for the new engine only. see #3457 .
edit: #3509 removed that limitation from CSVFormatter
The text was updated successfully, but these errors were encountered: