MissingDataRuleCategory Enumeration

Note: This API is now obsolete.

Enumerations for missing data rules.

Namespace:  Dundas.BI.Entities.MetricSets
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.2.0.1000)
Syntax
[ObsoleteAttribute("Use instead MissingDataInputCategory and MissingDataOutputCategory enumerations.")]
public enum MissingDataRuleCategory
Members
  Member nameValueDescription
None0 No missing data rules.
Null1 The missing data value is .
Zero2 The missing data is replaced with zero values.
Average3 The missing data is replaced with the average between the previous and the next values.
AverageNonMissingData4 The missing data is replaced with the average between the previous and the next valid points.
RollingAverage5 The missing data is replaced with the rolling average for the previous n values.
NullPassthrough6 Missing data is represented only by source data values, and such values remain unchanged.
See Also