Package adams.data.spc
Interface IndividualsControlChart
-
- All Superinterfaces:
ControlChart
,Destroyable
,OptionHandler
,TechnicalInformationHandler
- All Known Implementing Classes:
CChart
,MOACUSUM
,MOAPageHinkley
,NPChart
,PChart
public interface IndividualsControlChart extends ControlChart
Interface for control charts that work on individuals rather than samples.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Limits>
calculate(Number[] data)
Calculates center/lower/upper limit.double[]
prepare(Number[] data)
Prepares the data.-
Methods inherited from interface adams.data.spc.ControlChart
getName
-
Methods inherited from interface adams.core.Destroyable
destroy
-
Methods inherited from interface adams.core.option.OptionHandler
cleanUpOptions, defineOptions, getOptionManager, toCommandLine
-
Methods inherited from interface adams.core.TechnicalInformationHandler
getTechnicalInformation
-
-
-
-
Method Detail
-
calculate
List<Limits> calculate(Number[] data)
Calculates center/lower/upper limit.- Parameters:
data
- the data to use for the calculation- Returns:
- center/lower/upper
-
prepare
double[] prepare(Number[] data)
Prepares the data.- Parameters:
data
- the data to prepare- Returns:
- the prepared/processed data
-
-