-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorneeds decisionA decision on this change is neededA decision on this change is needed
Description
All other statistic functions in Base work work for Any
arrays of numeric values.
julia> test = Any[1,2,3]
3-element Array{Any,1}:
1
2
3
julia> std(test)
ERROR: `zero` has no method matching zero(::Type{Any})
in var at statistics.jl:162
julia> var(test)
ERROR: `zero` has no method matching zero(::Type{Any})
in var at statistics.jl:162
Metadata
Metadata
Assignees
Labels
bugIndicates an unexpected problem or unintended behaviorIndicates an unexpected problem or unintended behaviorneeds decisionA decision on this change is neededA decision on this change is needed