Colors
Summary: Runs the selection and coloring of all rows in a data table, utilizing JMP's built-in functionality.
Code:
dt = Open("data_table.jmp");
dt << Select All Rows;
dt << Colors( "red" );
Code Explanation:
- Open data table;
- Select all rows in dataset.
- Change row colors to red.