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.select" operation for selecting rows #18

Closed
andrus opened this issue Mar 31, 2019 · 0 comments
Closed

"DataFrame.select" operation for selecting rows #18

andrus opened this issue Mar 31, 2019 · 0 comments
Milestone

Comments

@andrus
Copy link
Collaborator

andrus commented Mar 31, 2019

In addition to DataFrame.selectColumns add a new DataFrame.select(..). This will allow to sample DataFrame contents, implement more window functions, etc. Selector should support filtering, reordering and duplicating rows.

df1 = df.select(1, 5, 3 );
df2 = df.select(asList(1, 5, 3));

Series<Integer> s = ..
df2 = df.select(s);
@andrus andrus changed the title "DataFrame.select" operation "DataFrame.selectRows" operation Mar 31, 2019
@andrus andrus changed the title "DataFrame.selectRows" operation "DataFrame.select" operation for selecting rows Mar 31, 2019
@andrus andrus added this to the 1.0 milestone Mar 31, 2019
@andrus andrus closed this as completed Mar 31, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant