-
-
Notifications
You must be signed in to change notification settings - Fork 168
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
Standard Deviation #78
Comments
There's several standard deviation functions:
|
but seems that none of them are doing that thing that i have discussed |
I see what you mean now, got a link to the paper or more info? What would the new function be called? Feel free to submit a PR as well! |
just submitted |
@iraj720 can you submit a reference to the paper you refer? Why can't you just replicate the approach calling already existing functions? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi
I found sth on paper which shows we can calculate SD of a dataset from SD's of its subsets :)
e.g : NEW_FUNCTION(SD({1,3}), SD(5), medians) = SD({1,3,5})
and the use case is where we have calculated the SD of 1000 rows of data and want to calculate SD of 1000 + 1 without processing former data
is this implemented in this library cause i didn't see such a thing
if it seems proper let me know to submit the pull request.
Thanks
The text was updated successfully, but these errors were encountered: