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

'sort' step to Python postprocess #89

Open
vdestraitt opened this issue Apr 12, 2019 · 0 comments
Open

'sort' step to Python postprocess #89

vdestraitt opened this issue Apr 12, 2019 · 0 comments
Labels
py pandas Python pandas backend querytranslate

Comments

@vdestraitt
Copy link
Contributor

Ex 1: sort on one column

This 'sort' step config in our VQB "language"...

{
   name: 'sort',
   columns: ["foo"]
   order: ["asc"] # 'asc' by default
}

... should yield the following postprocess pipeline:

{
   sort:
     columns: ["foo"]
     order: ["asc"]
}

Ex 2: sort on multiple columns

This 'sort' step config in our VQB "language"...

{
   name: 'sort',
   columns: ["foo", "bar"]
   order: ["asc", "desc"]
}

... should yield the following postprocess pipeline:

{
   sort:
     columns: ["foo", "bar"]
     order: ["asc", "desc"]
}
@vdestraitt vdestraitt added py pandas Python pandas backend querytranslate labels Apr 12, 2019
@vdestraitt vdestraitt added this to the v2-uncombed-parrot milestone Apr 15, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
py pandas Python pandas backend querytranslate
Projects
None yet
Development

No branches or pull requests

1 participant