Closed TysonStanley closed 8 years ago
Right now, it is considering "or". For example, var %on% c(">=12", "<=19") returns all possible values instead of only 12:19.
var %on% c(">=12", "<=19")
12:19
Possible solutions could be to treat all quoted conditions as & conditions and all numeric as or.
&
or
Right now, it is considering "or". For example,
var %on% c(">=12", "<=19")
returns all possible values instead of only12:19
.Possible solutions could be to treat all quoted conditions as
&
conditions and all numeric asor
.