Is there a similar facility like numpy.ma.array of python in Julia?

I guess I can use Array{Option{Missing, Int}, 1} to emulate an array with mask?

You can use Vector{Union{Missing, Int}}. And I think it’s the other way around: it is maskedarrays that emulate this.

3 Likes