Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
itertuples() fails after selecting a column twice #3873
Comments
|
i can repro this...prolly a bug. |
cpcloud
referenced
this issue
Jun 13, 2013
Merged
BUG: allow itertuples to work with frames with duplicate column names #3879
cpcloud
closed this
in #3879
Jun 13, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gtakacs commentedJun 12, 2013
The following code gives incorrect result (using pandas 0.11):
The last lines prints [(0, 'a', 'a'), (1, 'a', 'a')] instead of [(0, 1, 1), (1, 2, 2), (2, 3, 3)].