ANOM
ANOM using Run Script
Summary: Fits a model, selecting a weight column, deleting the selected column, and configuring multiple comparisons with overall average using ANOM chart.
Code:
dt = Open("data_table.jmp");
obj = dt << Run Script( "Fit Model" );
dt:weight << Set Selected;
dt << Delete Column;
obj << Multiple Comparisons(
Effect( age ),
Comparisons with Overall Average( 1, Comparisons with Overall Average Decision Chart( ANOM( 1, Point Options( "Show Needles" ) ) ) )
);
Code Explanation:
- Open data table;
- Run Fit Model script.
- Select weight column.
- Delete selected column.
- Configure multiple comparisons.
- Set effect to age.
- Enable comparisons with overall average.
- Generate ANOM chart.
- Show needles on chart.