1 (true) if both a and b are true.
0 (false) if either a or b is false or if both a and b are false.
Missing if either a or b is a missing value or if both a and b are missing values.
More than two arguments can be strung together. a&b returns 1 (true) only if all arguments evaluate to true.
Logical And with JMP 3 behavior, which treats missing values as 0.
1 (true) if both a and b are true.
0 (false) if either a or b is false or if both a and b are false.
0 (false) if either a or b is a missing value or if both a and b are missing values.
More than two arguments can be strung together. a:&b returns 1 (true) only if all arguments evaluate to true. When opening a JMP 3 data table, this function is automatically used for any And function.
Break works with For and While loops, and also with For Each Row.
Evaluates expr. If the value of expr is 1, r1 is returned; if 2, the value of r2 is returned, and so on. If no matches are found, the last argument (rElse) is returned.
The value whose index in the list of arguments matches expr, or the value of the last argument.
Continue works with For and While loops, and also with For Each Row.
Repeats the statement(s) in the body as long as the while condition is true. Init and increment control iterations.
Repeats the script on each row of the data table.
The following example creates data table references and then iterates over each row in Big Class.jmp. If the value of age in a row is greater than 15, the age is printed to the log.
Returns result when condition evaluates true. Otherwise returns next result when that condition evaluates as true. The optional elseResult is used if none of the preceding conditions are true. If no elseResult is given, and none of the conditions are true, then nothing happens.
Logical If with version 3.x behavior, which treats missing values as 0; used automatically when opening v3 data tables.
Linearly interpolates the y-value corresponding to a given x-value between two points (x1, y1), and (x2, y2) or by matrices xmatrix and ymatrix. The points must be in ascending order.
Returns 1 if the global variable, data table, or data column does not have a value (is uninitialized), or 0 otherwise.
If a is equal to value1, then result1 is returned. If a is equal to value2, result2 is returned, and so on.
Match with version 3.x behavior, which treats missing values as 0; used automatically when opening v3 data tables.
Missing value if a is missing.
a, b
Logical Or with version 3.x behavior, which treats missing values as 0.
a, b
Or() returns missing if any evaluated argument is missing. OrMZ() returns 0 if any evaluated argument is missing.
Finds corresponding y for a given x from a step-function fit. The points must be in ascending order.
Repeatedly tests the expr condition and executes the body until the expr is no longer true.
Returns 1 if expr yields a missing value or zero, 0 otherwise.