Help: JMP Script: Coefficient calculation based on a column switcher selection
Hello everyone,I need some help in order to adapt my P' chart of Laney for events. Below is my code: Firstly, I need to determine a z_KSigmaZ
coefficient based on the Y1 column with these lines: z_yyy = Eval( {: "Y1" } );
z_xx = z_yyy[1] << get values;
z_nnn = Eval( {:Nombre de seringues} );
z_nn = z_nnn[1] << get values;
z_rrr = Eval( {:Numéro de lot} );
z_Proportion = E Div( z_xx, z_nn );
z_Pba
...