Enum BadIndicesHandlingEnum
- Namespace
- TimeSeriesAnalysis.Dynamic
- Assembly
- TimeSeriesAnalysis.dll
Enum to determine how the ClosedLoopUnitIdentifier should determine which indices to ignore in the data set, such as due to bad values (NaN, Inf) or frozen data.
public enum BadIndicesHandlingEnum
Fields
Internal_DetectBadData = 2use the CommonDataPreprocessor to determine indices which are "bad" values, such as NaN or Inf
Internal_DetectBadDataAndFrozenData = 0use the CommonDataPreprocessor to determine indices which are "bad" values, such as NaN or Inf, and also frozen data(default)
UseProvidedIndicesToIgnore = 1use the indices provided in the dataset, if any. If none are provided, then no indices are ignored.