Hello,
I am doing some control charts with the nelson rules, but I need to explore the exact data from the nelson rules.
My script looks like this:
dt = Current Data Table();
obj = dt << Control Chart Builder(
Show Two Shewhart Charts(0),
Sort by Row Order(1),
Variables(Subgroup(:Batch), Y(:Wash 1 Viability)),
Chart(
Points(Statistic("Individual")),
Limits(Sigma("Moving Range")),
Warnings(Test 1(1)),
Set Control Limits({LCL(0.8), UCL(0.96), Avg(0.91)})
)
);
obj << Save Summary Table;
Everything works correctly until the control chart. However the following step which is saving the summary table doesn't work, I need to be able to view this table and to work with it in further steps of the process. Do you have any idea on what would be the issue in this scrip and why I am not able to generate the summary table this way?.
Thank you.
Kind Regards,
Diana