Skip to content
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

DataFrame.iteritems bug for nonunique columns #2047

Closed
changhiskhan opened this issue Oct 9, 2012 · 2 comments
Closed

DataFrame.iteritems bug for nonunique columns #2047

changhiskhan opened this issue Oct 9, 2012 · 2 comments
Assignees
Labels
Bug Indexing Related to indexing on series/frames, not to indexes themselves
Milestone

Comments

@changhiskhan
Copy link
Contributor

have two choices:

  1. iterate over unique columns and returns self[col]
  2. iterate over each column entry and return self.icol(i)

#1 is better for a lot of current cases in using iteritems to reconstruct a dict. #2 seems more natural though.

@wesm @lodagro any opinions?

@ghost ghost assigned changhiskhan Oct 9, 2012
@wesm
Copy link
Member

wesm commented Oct 12, 2012

Probably #2

@wesm
Copy link
Member

wesm commented Nov 18, 2012

@y-p fixed this

@wesm wesm closed this as completed Nov 18, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Indexing Related to indexing on series/frames, not to indexes themselves
Projects
None yet
Development

No branches or pull requests

2 participants