Hi everyone,
I'm a new JMP user and I have some difficulties to plot multiple control charts on the same report.
Here is my problem:
I am actually simulating a workshop that fills bottles for a fizzy drink. 3 steps are required on the process:
- a step where a concentrated solution is added
- then the solution is diluted with water
- and at the end, gas is added
For each step of this process, there are different machines. Thus, I have:
- "Concentré M1", "Concentré M2" and "Concentré M3" that can add the concentrated solution
- "Eau M4", "Eau M5" and "Eau M6" that can dilute the solution with water
- "Gaz M7", "Gaz M8" and "Gaz M9" that can add gas to the solution.
I would like to have a picture with 3 control charts, one for each "Concentrated Machines".
Here is my code:
par =
Control Chart(
Sample Label( :date ),
Group Size( 1 ),
KSigma( 3 ),
Chart Col(
:Volume,
Individual Measurement( Avg( 0 ), LCL( -0.8 ), UCL( 0.8 ) )
),
By( :concentre )
);
rpar = par << report;
rpar << save picture( "C:\Users\ThaiBinh\Desktop\cc-concentre.png", png );
When I run this program, my 3 control charts are plotted but when I open my picture on the desktop, I only have the last control chart. Here is what I have:
Can someone explain me how to obtain the 3 different control charts on the same picture ?
Thank you for your help !
NB: You will find attached the table that contains the data that I need to analyse.