DiscretizationMethod Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines how a continuous range of values is converted into a discrete, or fixed, number of values.
[System.Runtime.InteropServices.Guid("0F483045-46CE-4e4f-82F4-2184B051D7B6")]
public enum DiscretizationMethod
[<System.Runtime.InteropServices.Guid("0F483045-46CE-4e4f-82F4-2184B051D7B6")>]
type DiscretizationMethod =
Public Enum DiscretizationMethod
- Inheritance
-
DiscretizationMethod
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No grouping is requested. |
Automatic | 1 | Chooses best grouping technique among EqualArea, Clusters, and Threshold methods. |
EqualAreas | 2 | Specifies that when the distribution of continuous values is plotted as a curve, the areas under the curve covered by each bucket range are equal. |
Clusters | 3 | Finds buckets by performing single-dimensional clustering on the input values by using the K-Means algorithm. |
Thresholds | 4 | Specifies that when the distribution of continuous values is plotted as a curve, buckets are be created based on the inflection points (where gradient changes direction) in their distribution curve. |
UserDefined | 5 | Specifies that the user can define a custom grouping of the members. |