Let
a = [1 missing;2 missing]
The second column contains all missing elements.
How to check whether a column contains all missing elements?
I tried
all(i -> missing == i,a)
a[:,2] .== missing
but not succeeded.
I understand you want to check a specific column, then do:
julia> all(ismissing, view(a, :, 2))
true
if you want to check all columns then do:
julia> all.(ismissing, eachcol(a))
2-element BitVector:
0
1
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With