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

Allow accumulation of select()/where() in DataFrame #25

Open
mkornacker opened this issue Oct 6, 2023 · 0 comments
Open

Allow accumulation of select()/where() in DataFrame #25

mkornacker opened this issue Oct 6, 2023 · 0 comments

Comments

@mkornacker
Copy link
Collaborator

mkornacker commented Oct 6, 2023

Right now, DataFrame.select() cannot be called multiple times in order to build up the select list incrementally. The same applies to .where()

For .where(): allows multiple calls, which get accumulated as a conjunction.

For .select():

  • add a DataFrame.with(args: List[Expr], kwargs: Dict[str, Expr]) in order to add new select list items
  • multiple .select() in a chain are used to create nested DataFrames, such that the outer can select from the inner
@mkornacker mkornacker added the good first issue Good for newcomers label Oct 6, 2023
@mkornacker mkornacker removed the good first issue Good for newcomers label Dec 21, 2023
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