You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many cases, missing values will have to be skipped or replaced with a valid value. For example, sum([1, missing]) returns missing due to the behavior of +. Use sum(Missings.skip([1, missing]) to ignore missing values.
using Missings
sum(Missings.skip([1, missing])
is problematic (ending parenthesis is missing) but
sum(Missings.skip([1, missing]))
raises
ERROR: MethodError: no method matching skip(::Array{Union{Missing, Int64},1})
Hello,
according doc
is problematic (ending parenthesis is missing) but
raises
Doc (and maybe code also) should be fixed.
Maybe it should be
or with iterator
I will personally define
Missings.skip
likeKind regards
The text was updated successfully, but these errors were encountered: