adams.flow.control.RemoveOutliers
Allows the user to interactively remove outliers.
You can toggle the 'outlier' state of individual points by left-clicking them.
You can also toggle whole regions by selecting a polygon around them: use SHIFT+left-click to place vertices and SHIFT+right-click to finish the polygon. Use CTRL+right-click to clear the polygon points.
Flow input/output:
- input: adams.data.spreadsheet.SpreadSheet
- output: adams.flow.container.OutlierContainer
Container information:
- adams.flow.container.OutlierContainer: 
   - Original: original data; adams.data.spreadsheet.SpreadSheet
   - Clean: clean data; adams.data.spreadsheet.SpreadSheet
   - Outliers: outliers; adams.data.spreadsheet.SpreadSheet
   - Outlier-Indices: indices of the outliers (0-based); java.lang.Integer[]
Interactive actor information:
- supports interaction in headless mode: no
The logging level for outputting errors and debugging output.
| command-line | -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> | 
| default | WARNING | 
| min-user-mode | Expert | 
The name of the actor.
| command-line | -name <java.lang.String> | 
| default | RemoveOutliers | 
The annotations to attach to this actor.
| command-line | -annotation <adams.core.base.BaseAnnotation> | 
| default |  | 
If set to true, transformation is skipped and the input token is just forwarded as it is.
| command-line | -skip <boolean> | 
| default | false | 
If set to true, the flow execution at this level gets stopped in case this actor encounters an error; the error gets propagated; useful for critical actors.
| command-line | -stop-flow-on-error <boolean> | 
| default | false | 
| min-user-mode | Expert | 
If enabled, then no errors are output in the console; Note: the enclosing actor handler must have this enabled as well.
| command-line | -silent <boolean> | 
| default | false | 
| min-user-mode | Expert | 
If enabled uses just the name for the title instead of the actor's full name.
| command-line | -short-title <boolean> | 
| default | false | 
The width of the dialog.
| command-line | -width <int> | 
| default | 800 | 
| minimum | 1 | 
The height of the dialog.
| command-line | -height <int> | 
| default | 600 | 
| minimum | 1 | 
The X position of the dialog (>=0: absolute, -1: left, -2: center, -3: right).
| command-line | -x <int> | 
| default | -1 | 
| minimum | -3 | 
The Y position of the dialog (>=0: absolute, -1: top, -2: center, -3: bottom).
| command-line | -y <int> | 
| default | -1 | 
| minimum | -3 | 
If enabled, the flow gets stopped in case the user cancels the dialog.
| command-line | -stop-if-canceled <boolean> | 
| default | false | 
The custom stop message to use in case a user cancelation stops the flow (default is the full name of the actor)
| command-line | -custom-stop-message <java.lang.String> | 
| default |  | 
The stop mode to use.
| command-line | -stop-mode <GLOBAL|STOP_RESTRICTOR> | 
| default | GLOBAL | 
The detector to use for the initial outlier detection.
| command-line | -detector <adams.flow.control.removeoutliers.AbstractOutlierDetector> | 
| default | adams.flow.control.removeoutliers.Null | 
The spreadsheet column with the actual values.
| command-line | -col-actual <adams.data.spreadsheet.SpreadSheetColumnIndex> | 
| default | 1 | 
| example | An index is a number starting with 1; column names (case-sensitive) as well as the following placeholders can be used: first, second, third, last_2, last_1, last; numeric indices can be enforced by preceding them with '#' (eg '#12'); column names can be surrounded by double quotes. | 
The spreadsheet column with the predicted values.
| command-line | -col-predicted <adams.data.spreadsheet.SpreadSheetColumnIndex> | 
| default | 2 | 
| example | An index is a number starting with 1; column names (case-sensitive) as well as the following placeholders can be used: first, second, third, last_2, last_1, last; numeric indices can be enforced by preceding them with '#' (eg '#12'); column names can be surrounded by double quotes. |