-
Notifications
You must be signed in to change notification settings - Fork 194
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
rewrite _momentX methods in more functional style #900
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -161,87 +161,57 @@ end | |||||||||||||||||||||||
|
||||||||||||||||||||||||
##### General central moment | ||||||||||||||||||||||||
function _moment2(v::AbstractArray{<:Real}, m::Real; corrected=false) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
s += z * z | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
varcorrection(n, corrected) * s | ||||||||||||||||||||||||
s = sum(x->abs2(x-m), v, init=zero(m)) | ||||||||||||||||||||||||
return varcorrection(length(v), corrected) * s | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _moment2(v::AbstractArray{<:Real}, wv::AbstractWeights, m::Real; corrected=false) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
@inbounds s += (z * z) * wv[i] | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
varcorrection(wv, corrected) * s | ||||||||||||||||||||||||
s = sum(i -> (@inbounds abs2(v[i] - m) * wv[i]), eachindex(v), init=zero(m)) | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similarly, I think we need a different There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @devmotion if
Suggested change
|
||||||||||||||||||||||||
return varcorrection(wv, corrected) * s | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _moment3(v::AbstractArray{<:Real}, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
s += z * z * z | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / n | ||||||||||||||||||||||||
s = sum(x->(x-m)^3, v, init=zero(m)) | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||
return s/length(v) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _moment3(v::AbstractArray{<:Real}, wv::AbstractWeights, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
@inbounds s += (z * z * z) * wv[i] | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / sum(wv) | ||||||||||||||||||||||||
s = sum( | ||||||||||||||||||||||||
i -> (@inbounds (z = (v[i] - m); z * z * z * wv[i])), | ||||||||||||||||||||||||
eachindex(v), | ||||||||||||||||||||||||
init=zero(m), | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
Comment on lines
+179
to
+183
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same comments as above:
Suggested change
|
||||||||||||||||||||||||
return s/sum(wv) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _moment4(v::AbstractArray{<:Real}, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
s += abs2(z * z) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / n | ||||||||||||||||||||||||
s = sum(x-> (z = x-m; abs2(z*z)), v, init=zero(m)) | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||
return s/length(v) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _moment4(v::AbstractArray{<:Real}, wv::AbstractWeights, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
@inbounds s += abs2(z * z) * wv[i] | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / sum(wv) | ||||||||||||||||||||||||
s = sum( | ||||||||||||||||||||||||
i -> (@inbounds (z = (v[i] - m); abs2(z * z) * wv[i])), | ||||||||||||||||||||||||
eachindex(v), | ||||||||||||||||||||||||
init=zero(m), | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
Comment on lines
+193
to
+197
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||
return s/sum(wv) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _momentk(v::AbstractArray{<:Real}, k::Int, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
s += (z ^ k) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / n | ||||||||||||||||||||||||
s = sum(x -> (x - m)^k, v, init=zero(m)) | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||
return s/length(v) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
function _momentk(v::AbstractArray{<:Real}, k::Int, wv::AbstractWeights, m::Real) | ||||||||||||||||||||||||
n = length(v) | ||||||||||||||||||||||||
s = 0.0 | ||||||||||||||||||||||||
for i = 1:n | ||||||||||||||||||||||||
@inbounds z = v[i] - m | ||||||||||||||||||||||||
@inbounds s += (z ^ k) * wv[i] | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
s / sum(wv) | ||||||||||||||||||||||||
s = sum( | ||||||||||||||||||||||||
i -> (@inbounds (z = (v[i] - m); z^k * wv[i])), | ||||||||||||||||||||||||
eachindex(v), | ||||||||||||||||||||||||
init=zero(m), | ||||||||||||||||||||||||
) | ||||||||||||||||||||||||
Comment on lines
+207
to
+211
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||
return s/sum(wv) | ||||||||||||||||||||||||
end | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||
""" | ||||||||||||||||||||||||
moment(v, k, [wv::AbstractWeights], m=mean(v)) | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should use an improved
init
value if possible - in many cases the result ofsum(...)
won't be of the same type aszero(m)
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For instance, we could use