Exclude
Exclude using Select Rows
Summary: Selects and excludes specific rows in a data table, allowing for targeted analysis.
Code:
dt = Open("data_table.jmp");
dt << Select Rows( 1 :: 4 );
dt << Select Rows( 25 :: 28 );
dt << Exclude( 1 );
Code Explanation:
- Open data table.
- Select first four rows.
- Select next four rows.
- Exclude first row.