Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Tools for Java
 QCSPCChart SPC for Java
 How do you read cp, cpk, sigma, etc. data values

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
scrindan Posted - 07 Jul 2011 : 12:28:47
there any way to get data cp, cpk, sigma, etc in array? I view them independently and not only in graphics or tables it generates.
2   L A T E S T    R E P L I E S    (Newest First)
quinncurtis Posted - 11 Sep 2011 : 10:27:39


The estimated process mean is the same as the target value of the primary chart. These values only make sense after the autoCalculateControlLimits method is called. You can retrieve the UCL and LCL in a similar fashion. The estimated process sigma can be calculated as the (ucl - processMean) / 3;

double meanValue = this.getPrimaryChart().getControlLimitData(SPCChartObjects.SPC_CONTROL_TARGET).getLimitValue();
double ucl = this.getPrimaryChart().getControlLimitData(SPCChartObjects.SPC_UPPER_CONTROL_LIMIT).getLimitValue();
double lcl = this.getPrimaryChart().getControlLimitData(SPCChartObjects.SPC_LOWER_CONTROL_LIMIT).getLimitValue();
double sigmaValue = (ucl - meanValue)/3;

scrindan Posted - 10 Sep 2011 : 16:41:06
thank you very much, I have another question, processmean processsigma and always returns the values of 1 and 10, I'm doing something wrong?, did as you indicated to me, hehe.

and I have another question, as I can get the values of USL and LSL, the graphics and also require use in the array

forgive my English, I do not speak very well

Quinn-Curtis Forums © 2000-2018 Quinn-Curtis, Inc. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07