@where(datos, :x_13 .== "#0_PHY") throws the following error because the column has missing values:
LoadError: DataArrays.NAException("cannot index an array with a DataArray containing NA values")
while loading In[8], in expression starting on line 1
in to_index at /home/dzea/.julia/v0.4/DataArrays/src/indexing.jl:76
in getindex at /home/dzea/.julia/v0.4/DataArrays/src/indexing.jl:173
in getindex at /home/dzea/.julia/v0.4/DataFrames/src/dataframe/dataframe.jl:281
in where at /home/dzea/.julia/v0.4/DataFramesMeta/src/DataFramesMeta.jl:164
datos[:x_13] .== "#0_PHY" works and returns a DataArrays.DataArray{Bool,1}, but datos[datos[:x_13] .== "#0_PHY",:] throws the same error.
@where(datos, :x_13 .== "#0_PHY")throws the following error because the column has missing values:datos[:x_13] .== "#0_PHY"works and returns aDataArrays.DataArray{Bool,1}, butdatos[datos[:x_13] .== "#0_PHY",:]throws the same error.