Uses of Interface
adams.data.spc.ControlChart
-
Packages that use ControlChart Package Description adams.data.spc adams.flow.container adams.flow.sink adams.flow.transformer adams.gui.tools.spreadsheetviewer.chart -
-
Uses of ControlChart in adams.data.spc
Subinterfaces of ControlChart in adams.data.spc Modifier and Type Interface Description interface
ControlChartWithSampleSize
Interface for all control charts with sample sizes.interface
IndividualsControlChart
Interface for control charts that work on individuals rather than samples.interface
MatrixControlChart
Interface for control charts that work on a matrix.interface
SamplesControlChart
Interface for control charts that work on samples rather than individuals.Classes in adams.data.spc that implement ControlChart Modifier and Type Class Description class
AbstractControlChart
Ancestor for control charts.class
AbstractControlChartWithSampleSize
Ancestor for control charts.class
CChart
Generates data for a c chart.
For more information see:
QICacros.class
MOACUSUM
CUSUM (cumulative sum control chart) is a sequential analysis technique developed by E.class
MOAPageHinkley
Page-Hinkley Test.
This version is based on MOA's drift detector:
https://github.com/apache/incubator-samoa/blob/9b178f63152e5b4c262e0f3ed28e77667832fc98/samoa-api/src/main/java/org/apache/samoa/moa/classifiers/core/driftdetection/PageHinkleyDM.java
class
NPChart
Generates data for an np chart.
For more information see:
QICacros.class
PChart
Generates data for a p chart.
For more information see:
QICacros.class
UChart
Generates data for a u chart.
For more information see:
QICacros.class
XBarRChart
Generates data for a XBar R chart.
For more information see:
QICacros.class
XBarSChart
Generates data for an XBar S chart.
For more information see:
QICacros. -
Uses of ControlChart in adams.flow.container
Constructors in adams.flow.container with parameters of type ControlChart Constructor Description ControlChartContainer(ControlChart algorithm, String chart, Object data, Object prepared, Limits[] limits)
Initializes the container. -
Uses of ControlChart in adams.flow.sink
Fields in adams.flow.sink declared as ControlChart Modifier and Type Field Description protected ControlChart
ControlChartPlot. m_Chart
the chart algorithm to use. -
Uses of ControlChart in adams.flow.transformer
Fields in adams.flow.transformer declared as ControlChart Modifier and Type Field Description protected ControlChart
ControlChart. m_Chart
the control chart to use.Methods in adams.flow.transformer that return ControlChart Modifier and Type Method Description ControlChart
ControlChart. getChart()
Returns the chart to use.Methods in adams.flow.transformer with parameters of type ControlChart Modifier and Type Method Description void
ControlChart. setChart(ControlChart value)
Sets the chart to use. -
Uses of ControlChart in adams.gui.tools.spreadsheetviewer.chart
Fields in adams.gui.tools.spreadsheetviewer.chart declared as ControlChart Modifier and Type Field Description protected ControlChart
ControlChart. m_Chart
the control chart to generate.Methods in adams.gui.tools.spreadsheetviewer.chart that return ControlChart Modifier and Type Method Description ControlChart
ControlChart. getChart()
Returns the control chart to generate.Methods in adams.gui.tools.spreadsheetviewer.chart with parameters of type ControlChart Modifier and Type Method Description void
ControlChart. setChart(ControlChart value)
Sets the control chart to generate.
-