Missing Values

    missing values propagate automatically when passed to standard mathematical operators and functions. For these functions, uncertainty about the value of one of the operands induces uncertainty about the result. In practice, this means a math operation involving a missing value generally returns missing:

    Since missing is a normal Julia object, this propagation rule only works for functions which have opted in to implement this behavior. This can be achieved by:

    • adding a specific method defined for arguments of type Missing,
    • accepting arguments of this type, and passing them to functions which propagate them (like standard math operators).

    Packages should consider whether it makes sense to propagate missing values when defining new functions, and define methods appropriately if this is the case. Passing a missing value to a function which does not have a method accepting arguments of type Missing throws a MethodError, just like for any other type.

    Functions that do not propagate missing values can be made to do so by wrapping them in the passmissing function provided by the package. For example, f(x) becomes passmissing(f)(x).

    Standard equality and comparison operators follow the propagation rule presented above: if any of the operands is missing, the result is missing. Here are a few examples:

    1. julia> missing == 1
    2. missing
    3. julia> missing == missing
    4. missing
    5. julia> missing < 1
    6. missing
    7. julia> 2 >= missing
    8. missing

    In particular, note that missing == missing returns missing, so == cannot be used to test whether a value is missing. To test whether x is missing, use ismissing(x).

    Special comparison operators and \=== are exceptions to the propagation rule. They will always return a Bool value, even in the presence of missing values, considering missing as equal to missing and as different from any other value. They can therefore be used to test whether a value is missing:

    1. julia> missing === 1
    2. false
    3. julia> isequal(missing, 1)
    4. false
    5. julia> missing === missing
    6. true
    7. julia> isequal(missing, missing)
    8. true

    The operator is another exception: missing is considered as greater than any other value. This operator is used by sort, which therefore places missing values after all other values:

    1. julia> isless(1, missing)
    2. true
    3. julia> isless(missing, Inf)
    4. false
    5. julia> isless(missing, missing)
    6. false

    Logical (or boolean) operators |, and xor are another special case since they only propagate missing values when it is logically required. For these operators, whether or not the result is uncertain, depends on the particular operation. This follows the well-established rules of which are implemented by e.g. NULL in SQL and NA in R. This abstract definition corresponds to a relatively natural behavior which is best explained via concrete examples.

    Let us illustrate this principle with the logical “or” operator |. Following the rules of boolean logic, if one of the operands is true, the value of the other operand does not have an influence on the result, which will always be true:

    1. julia> true | true
    2. true
    3. julia> true | false
    4. true
    5. julia> false | true
    6. true
    1. julia> true | missing
    2. true
    3. julia> missing | true
    4. true

    On the contrary, if one of the operands is false, the result could be either true or false depending on the value of the other operand. Therefore, if that operand is missing, the result has to be missing too:

    1. true
    2. julia> true | false
    3. true
    4. julia> false | false
    5. false
    6. julia> false | missing
    7. missing
    8. julia> missing | false
    9. missing

    The behavior of the logical “and” operator is similar to that of the | operator, with the difference that missingness does not propagate when one of the operands is false. For example, when that is the case of the first operand:

    1. julia> false & false
    2. false
    3. julia> false & true
    4. false
    5. julia> false & missing
    6. false

    On the other hand, missingness propagates when one of the operands is true, for example the first one:

    Finally, the “exclusive or” logical operator xor always propagates missing values, since both operands always have an effect on the result. Also note that the negation operator returns missing when the operand is missing, just like other unary operators.

    Control flow operators including if, and the ternary operator x ? y : z do not allow for missing values. This is because of the uncertainty about whether the actual value would be true or false if we could observe it. This implies we do not know how the program should behave. In this case, a is thrown as soon as a missing value is encountered in this context:

    1. julia> if missing
    2. println("here")
    3. end
    4. ERROR: TypeError: non-boolean (Missing) used in boolean context

    For the same reason, contrary to logical operators presented above, the short-circuiting boolean operators && and do not allow for missing values in situations where the value of the operand determines whether the next operand is evaluated or not. For example:

    1. julia> missing || false
    2. ERROR: TypeError: non-boolean (Missing) used in boolean context
    3. julia> missing && false
    4. ERROR: TypeError: non-boolean (Missing) used in boolean context
    5. julia> true && missing && false
    6. ERROR: TypeError: non-boolean (Missing) used in boolean context

    In contrast, there is no error thrown when the result can be determined without the missing values. This is the case when the code short-circuits before evaluating the missing operand, and when the missing operand is the last one:

    1. julia> true && missing
    2. missing
    3. julia> false && missing
    4. false

    Arrays containing missing values can be created like other arrays:

    1. julia> [1, missing]
    2. 2-element Vector{Union{Missing, Int64}}:
    3. 1
    4. missing

    As this example shows, the element type of such arrays is Union{Missing, T}, with T the type of the non-missing values. This reflects the fact that array entries can be either of type T (here, Int64) or of type Missing. This kind of array uses an efficient memory storage equivalent to an Array{T} holding the actual values combined with an Array{UInt8} indicating the type of the entry (i.e. whether it is Missing or T).

    Arrays allowing for missing values can be constructed with the standard syntax. Use Array{Union{Missing, T}}(missing, dims) to create arrays filled with missing values:

    1. julia> Array{Union{Missing, String}}(missing, 2, 3)
    2. 2×3 Matrix{Union{Missing, String}}:
    3. missing missing missing
    4. missing missing missing

    Using undef or similar may currently give an array filled with missing, but this is not the correct way to obtain such an array. Use a missing constructor as shown above instead.

    An array with element type allowing missing entries (e.g. Vector{Union{Missing, T}}) which does not contain any missing entries can be converted to an array type that does not allow for missing entries (e.g. Vector{T}) using . If the array contains missing values, a MethodError is thrown during conversion:

    1. julia> x = Union{Missing, String}["a", "b"]
    2. 2-element Vector{Union{Missing, String}}:
    3. "a"
    4. julia> convert(Array{String}, x)
    5. 2-element Vector{String}:
    6. "a"
    7. "b"
    8. julia> y = Union{Missing, String}[missing, "b"]
    9. 2-element Vector{Union{Missing, String}}:
    10. missing
    11. "b"
    12. julia> convert(Array{String}, y)

    Since missing values propagate with standard mathematical operators, reduction functions return missing when called on arrays which contain missing values:

    1. julia> sum([1, missing])
    2. missing

    In this situation, use the skipmissing function to skip missing values:

    This convenience function returns an iterator which filters out missing values efficiently. It can therefore be used with any function which supports iterators:

    1. julia> x = skipmissing([3, missing, 2, 1])
    2. skipmissing(Union{Missing, Int64}[3, missing, 2, 1])
    3. julia> maximum(x)
    4. 3
    5. julia> mean(x)
    6. 2.0
    7. julia> mapreduce(sqrt, +, x)
    8. 4.146264369941973

    Objects created by calling skipmissing on an array can be indexed using indices from the parent array. Indices corresponding to missing values are not valid for these objects, and an error is thrown when trying to use them (they are also skipped by keys and eachindex):

    1. julia> x[1]
    2. 3
    3. julia> x[2]
    4. ERROR: MissingException: the value at index (2,) is missing
    5. [...]

    This allows functions which operate on indices to work in combination with skipmissing. This is notably the case for search and find functions. These functions return indices valid for the object returned by skipmissing, and are also the indices of the matching entries in the parent array:

    1. julia> findall(==(1), x)
    2. 1-element Vector{Int64}:
    3. 4
    4. julia> findfirst(!iszero, x)
    5. 1
    6. julia> argmax(x)
    7. 1

    Use to extract non-missing values and store them in an array:

    1. julia> collect(x)
    2. 3-element Vector{Int64}:
    3. 3
    4. 2
    5. 1

    The three-valued logic described above for logical operators is also used by logical functions applied to arrays. Thus, array equality tests using the operator return missing whenever the result cannot be determined without knowing the actual value of the missing entry. In practice, this means missing is returned if all non-missing values of the compared arrays are equal, but one or both arrays contain missing values (possibly at different positions):

    1. julia> [1, missing] == [2, missing]
    2. false
    3. julia> [1, missing] == [1, missing]
    4. missing
    5. julia> [1, 2, missing] == [1, missing, 2]
    6. missing

    As for single values, use isequal to treat missing values as equal to other missing values, but different from non-missing values:

    1. julia> isequal([1, missing], [1, missing])
    2. true
    3. julia> isequal([1, 2, missing], [1, missing, 2])
    4. false
    1. julia> all([true, missing])
    2. missing
    3. julia> all([false, missing])
    4. false
    5. julia> any([true, missing])
    6. true
    7. julia> any([false, missing])