We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We'd like to have support for computing the standard dev as an aggregation, something along the lines of
# global df.agg(col("data").std_dev()) # grouped df.groupby("name").agg(col("data").std_dev())
There's an algorithm for distributed std dev we can use in order to not need to first compute and broadcast the mean.
The text was updated successfully, but these errors were encountered:
Closed with #3005
Sorry, something went wrong.
raunakab
No branches or pull requests
We'd like to have support for computing the standard dev as an aggregation, something along the lines of
There's an algorithm for distributed std dev we can use in order to not need to first compute and broadcast the mean.
The text was updated successfully, but these errors were encountered: