mcobjBASIC_STATISTICS_FieldIndices Enumeration
|
|
Indices of the fields of the BASIC_STATISTICS structure for field accesswhen the structure is cast to an array of Double.
Namespace:
MediaCy.IQL.ObjectManager
Assembly:
MediaCy.IQL.ObjectManager (in MediaCy.IQL.ObjectManager.dll) Version: 10.0.6912.0
SyntaxPublic Enumeration mcobjBASIC_STATISTICS_FieldIndices
Members
| Member name | Value | Description |
---|
| mcbsfiCount | 0 | count of non-missing values |
| mcbsfiCountOfMissing | 1 | count of missing values skipped |
| mcbsfiMinimum | 2 | minimum value |
| mcbsfiIndexOfMinimum | 3 | index where min value was first observed |
| mcbsfiMaximum | 4 | maximum value |
| mcbsfiIndexOfMaximum | 5 | index where max value was first observed |
| mcbsfiRange | 6 | Maximum-Minimum |
| mcbsfiSum | 7 | Sum of non-missing values |
| mcbsfiMean | 8 | Arithmetic average (Sum/Count) |
| mcbsfiAverageAbsDev | 9 | Average absolute deviation from the Mean |
| mcbsfiVariance | 10 | 2nd moment |
| mcbsfiStdDev | 11 | sqrt of 2nd moment |
| mcbsfiRawSkew | 12 | 3nd moment |
| mcbsfiNormalizedSkew | 13 | RawSkew / StdDev^3; its std-dev is sqrt(15/N) |
| mcbsfiRawKurtosis | 14 | 4th moment |
| mcbsfiNormalizedKurtosis | 15 | (RawKurtosis / StdDev^4) - 3; its stddev is sqrt(96/N) |
| mcbsfiLastIndex | 15 | Last index value. This value+1 is count of all fields. |
See Also