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

Implement aggregation operations #41

Open
7 of 8 tasks
sharadgaur opened this issue Sep 27, 2022 · 2 comments
Open
7 of 8 tasks

Implement aggregation operations #41

sharadgaur opened this issue Sep 27, 2022 · 2 comments
Assignees

Comments

@sharadgaur
Copy link
Contributor

sharadgaur commented Sep 27, 2022

Following functions need to be implemented:

  • group (all values in the resulting vector are 1)~
  • stddev (calculate population standard deviation over dimensions)
  • stdvar (calculate population standard variance over dimensions)
  • count (count number of elements in the vector)~
  • count_values (count number of elements with the same value)
  • bottomk (smallest k elements by sample value)
  • topk (largest k elements by sample value)
  • quantile
@yeya24
Copy link
Contributor

yeya24 commented Sep 27, 2022

One note here, we have group and count already.
It is easier to start with stddev and stdvar as they takes a range vector only, while count_values, bottomk and topk need to take additional parameters so probably we can wait for #23

@alanprot
Copy link
Contributor

alanprot commented Nov 1, 2022

Hi,

I did not see this issue before so i opened a new one for bottomK and topK. Those aggregations seems to need some additional work so i think it should be fine to track those there?

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

3 participants