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

fix: entropize works with NaN values #68

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/entropize.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ so that it is close to 1 for values close to the median, and close to 0 for
values close to the extreme of the distribution.
"""
function entropize!(U::Matrix{RT}, A::Matrix{T}) where {RT <: AbstractFloat, T <: Number}
for i in eachindex(A)
p_high = mean(A .< A[i])
p_low = mean(A .>= A[i])
for i in findall(!isnan, A)
p_high = mean(skipmissing(A .< A[i]))
p_low = mean(skipmissing(A .>= A[i]))
e_high = p_high .* log2(p_high)
e_low = p_low .* log2(p_low)
U[i] = -e_high .- e_low
end
U[findall(isnan, U)] .= zero(eltype(U))
m = maximum(U)
for i in eachindex(U)
U[i] /= m
end
U[i] /= m
end
return U
end

Expand Down
Loading