Developer Documentation Library > Scripting > Expressions > Operators > Comparison operators > Greater than or equal to (>=) operator
 
Greater than or equal to (>=) operator
Numeric variables
This example selects respondents who gave the Mammals gallery a rating of 3 or more.
mammals >= 3
Categorical variables
The >= operator returns True if the category list on the left side is a proper superset of, or is equal to, the category list on the right side. The expression in this example selects respondents who have visited museums in at least the three specified world regions.
location >= {EUROPE, ASIA_OR_AUSTRALIA, AFRICA}
See
Comparison operators