Can someone explain the difference between the two examples below:
(Julia v0.6 and DataFrames 0.10.1)
flt = isna.(mydataframe[:var]) # -> BitArray{1}
inv_flt = .!(flt) # -> BitArray{1}
# however...
inv_flt = .!(isna.(mydataframe[:var])) # --> DataArray{Any, 1}