Appendixes | Report Option Descriptions | Event Definition

Event Definition
Use this text box to specify a definition for the event.
Definition Syntax:
You must specify an event definition using the following syntax:
Variable Operator Value
where the Variable is a column in the domain specified using the Findings Domain to Analyze parameter, the Operator is used to specify a comparison (see examples below) and the Value is some numeric or character value.
You can combine definitions using Boolean operators such as and or or .
For example, to define a Hypertension event, where the systolic blood pressure is greater than 140 and the diastolic pressure is greater than 90:
*
Type SYSBP >= 140 and DIABP >= 90 in the text box.
You can set multiple conditions for each definition. Enclose these compound definitions in parentheses. For example, if your data have occasional missing values (the symbol for missing values is typically a period ( . )) and you would prefer to interpret missing values as meeting event criteria:
*
Type (SYSBP >= 140 or SYSBP =.) and (DIABP >= 90 or DIABP = .) in the text box.
Operators
Comparison operators (also called binary operators) compare a variable with a value or with another variable. Comparison operators propose a relationship and ask SAS to determine whether that relationship holds. Only observations that meet the condition(s) specified are included in the analysis.
The comparison operators, available to you are shown below.
= or EQ
Entering Gene EQ “EGF” subsets the input data set, retaining only those observations where the value in the Gene column is EGF.
^= or NE
Entering IndividualNum ^= 450 subsets the input data set, retaining only those observations where the value in the IndividualNum column is not equal to 450.
< or LT
Entering Position < 100000 subsets the input data set, retaining only those observations where the position value is less than 100,000.
> or GT
Entering Position GT 100000 subsets the input data set, retaining only those observations where the position value is greater than 100,000.
<= or LE
Entering Position <= 100000 subsets the input data set, retaining only those observations where the position value is less than or equal to 100,000.
>= or GE
Entering Position GE 100000 subsets the input data set, retaining only those observations where the position value is greater than or equal to 100,000.
To Specify an Event Definition:
*