Less than or equal to (<=) operator
Numeric variables
This example selects respondents who gave the Mammals gallery a rating of 3 or less.
mammals <= 3
Categorical variables
This example selects respondents who have visited museums in one, two, or three of the specified world regions.
location <= {EUROPE, ASIA_OR_AUSTRALIA, AFRICA}
See