For the latest version of JMP Help, visit JMP.com/help.

JSL Syntax Reference > JSL Functions > Row State Functions
Publication date: 09/28/2021

Row State Functions

As Row State(i)

Description

Converts i into a row state value.

Returns

A row state from the i given.

Argument

i

an integer

Color Of(rowstate)

Description

Returns or sets the color index.

Returns

The color index of rowstate.

Argument

rowstate

a row state argument

Example

Set the color of the fifth row to red.

Color Of( Rowstate( 5) ) = 3

Color State(i)

Description

Returns a row state with the color index of i.

Returns

A row state.

Argument

i

index for a JMP color

Combine States(rowstate, rowstate, ...)

Description

Generates a row state combination from two or more row state arguments.

Returns

A single numeric representation of the combined row states.

Arguments

rowstate

Two or more row states.

Excluded(rowstate)

Description

Returns or sets an excluded index.

Returns

The excluded attribute, 0 or 1.

Argument

rowstate

One or more row states.

Excluded State(num)

Description

Returns a row state for exclusion from the num given.

Hidden(rowstate)

Description

Returns or sets the hidden index.

Hidden State(num)

Description

Returns a row state for hiding from the num given.

Hue State(num)

Description

Returns a hue state from the num given.

Labeled(rowstate)

Description

Returns or sets the labeled index.

Labeled State(num)

Description

Returns a labeled state from the num given.

Marker Of(rowstate)

Description

Returns or sets the marker index of a row state.

Marker State(num)

Description

Returns a marker state from the num given.

Row State(<dt,> <n>)

Description

Returns the row state changed from the initial condition of the active row or the nth row.

Arguments

dt

Optional positional argument: a reference to a data table. If this argument is not in the form of an assignment, then it is considered a data table expression.

n

The row number.

Example

The following example creates the data table references and then returns the row state of row 1 in Big Class.jmp:

dt1 = Open( "$SAMPLE_DATA/Big Class.jmp" );
dt2 = Open( "$SAMPLE_DATA/San Francisco Crime.jmp" );
Row State( dt1, 1 );

Selected(rowstate)

Description

Returns or sets the selected index.

Selected State(num)

Description

Returns a selected state from the num given.

Shade State(num)

Description

The Shade State function assigns 5 shade levels to a color or hue.

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).