hello,
I have two arrays with the elements
julia> h = unique(he.ID)
1421-element Array{String,1}:
"AC_000011"
"AC_000019"
"AC_000189"
"AC_000190"
⋮
"NC_039209"
"NC_039212"
"NC_039213"
"NC_039236"
julia> j = unique(tu.ID)
2891-element Array{String,1}:
"AC_000006"
"AC_000008"
"AC_000010"
"AC_000011"
⋮
"NC_039221"
"NC_039228"
"NC_039231"
"NC_039237"
How can I find the elements of h that are not in j? In other words, what is the equivalent to R’s h[!(h %in% j)]
?
Thank you