Manage Limits
Summary: Generates a tabulated report with grouping columns by managing limits for pH, Salt Concentration, and Moisture Content across different Cheese Types.
Code:
// Manage Limits
// Open data table
dt = Open("data_table.jmp");
// Manage Limits
Manage Limits(
Process Variables(
:pH, :Salt Concentration,
:Moisture Content
),
Grouping( :Cheese Type )
);
Code Explanation:
- Open data table.
- Set process variables.
- Group by Cheese Type.
- Manage limits for pH.
- Manage limits for Salt Concentration.
- Manage limits for Moisture Content.