-
Notifications
You must be signed in to change notification settings - Fork 50
Indexing with missing values #207
Comments
I'm unclear what this issue is about. There was a pretty clear design decision made to not support indexing an array with |
I found this error using DataFramesMeta and @nalimilan suggest me to post it here. I expected |
It was a design decision, before my time, -- I bet it just slipped @nalimilan's mind when he saw your issue come in. FWIW, personally, I'd be for a terse way to map |
Yes, maybe dropping values by default is not the best idea... Maybe a keyword argument like dropna=true for where? R introduces a NA value in the output array for each position with a NA in the index array. |
Sorry, I read that issue too quickly. So this needs to be addressed in DataFramesMeta by providing a convenient way of skipping missing values. Let's discuss that on the other issue. |
datos[:x_13] .== "#0_PHY"
returns aDataArrays.DataArray{Bool,1}
with NAs, this causesdatos[datos[:x_13] .== "#0_PHY",:]
to throw the following error:Related to: JuliaData/DataFramesMeta.jl#58
The text was updated successfully, but these errors were encountered: