Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Tools for Microsoft .Net
 SPC Control Chart Tools for .Net
 setting x-bar instead of computing it

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
TonyCoolearth Posted - 14 Jan 2014 : 12:40:30
Hey there

I've got an XBarSigmaChart that I would like to modify such that instead of automatically computing XBAR, I can supply it. Our customer would like to see all values relative to their specified target value, rather than seeing them relative to the computed mean.

Anyone have an idea the shortest path to that objective?

Thanks
Tony
4   L A T E S T    R E P L I E S    (Newest First)
TonyCoolearth Posted - 14 Jan 2014 : 17:03:24
Thanks! That did it! Have a great day! :)
quinncurtis Posted - 14 Jan 2014 : 14:43:11
Then you should be able to use the charts SetControlLimitValues, where the values are specified in the order: (Primary Chart Target, Primary Chart -3 sigma limit, Primary Chart +3 sigma limit, Secondary Chart Target, Secondary Chart -3 sigma limit, Secondary Chart +3 sigma limit).


double [] controllimitvalues = {42, 30, 53, 10, 0, 22};
this.ChartData.SetControlLimitValues(controllimitvalues);

This, and related methods, are described in Chapter 6 of the manual, under the subhead SPC Control Limits. See the example program TimeVariableControlChart.MedianRangeChart.
TonyCoolearth Posted - 14 Jan 2014 : 14:23:29
Indeed I do!
quinncurtis Posted - 14 Jan 2014 : 13:53:07
It's more complicated than just setting a mean value. As far as the chart, the control limit values are based on the mean and sigma values, and the sigma calculation requires the use of the process mean. So basically, you must set both the mean and sigma at the same time to the target values you are trying to achieve. In addition to the mean value, do you also have the sigma (or +- 3-sigma values) you want to use as the control limits?

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