Stata Operators
Stata Operators
== equal to a==3
^= not equal to a ^= 3
~= not equal to
| or (a>b or c>d)
~ not
The order of evaluation (from first to last) of all operators is ! (or ~), ^, - (negation), /, *, -
(subtraction), +, != (or ^=), >, <, <=, >=, ==, &, and |.