DataEditR
DataEditR copied to clipboard
Does "contains" / "not contains" filters really works?
Hello.
For instance using iris$Species dataset, either Species CONTAINS / NOT CONTAINS "set" (setosa) doesn't return anything.
Am I doing something wrong ?
I checked the dataFilter() code but i cant see any problem but I am not familiar with this type of code and IDK how I could test something to work around this..
Cheeers
EDIT: I think it's the NOT CONTAIN which is slightly weird
Only 5 setosa returned
it seems the not contains is broken
EDIT =
if (logic == "contain") { return(ind) # NOT CONTAIN } else if (logic == "not contain") { return(seq_len(ncol(values$data))[-ind]) } }
=> change to nrow?????
Fixed on my fork : https://github.com/sbridel/DataEditR