Label
Example 1
Summary: Labels variables in a JMP data table, specifically assigning labels to the 'age' and 'sex' columns.
Code:
Open("data_table.jmp");
:age << Label( 1 );
:sex << Label( 1 );
Code Explanation:
- Open data table.
- Label age variable.
- Label sex variable.
Example 2
Summary: Opens a data table and unlabels the name column.
Code:
Open("data_table.jmp");
:name << Label( 0 );
Code Explanation:
- Open data table.
- Unlabel name column.