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

izip iterator method for DataFrame #818

Closed
adamklein opened this issue Feb 23, 2012 · 0 comments
Closed

izip iterator method for DataFrame #818

adamklein opened this issue Feb 23, 2012 · 0 comments
Assignees
Milestone

Comments

@adamklein
Copy link
Contributor

From mailing list:

Out of curiosity, is there a reason returning an izip iterator of the
index + cols isn't DataFrame method? I've got the following in my
toolbox now:

def iziprows(df):
series = [df[col] for col in df.columns]
series.insert(0,
df.index)
return izip(*series)

@ghost ghost assigned adamklein Feb 23, 2012
@adamklein adamklein reopened this Feb 24, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant