ScalarMiningStructureColumn.DiscretizationMethod Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the method to be used for discretization.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelColumnDiscretizationMethodTypeConverter, Microsoft.AnalysisServices.Design")]
public string DiscretizationMethod { get; set; }
public:
[XmlElementAttribute(IsNullable = false)]
[TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelColumnDiscretizationMethodTypeConverter, Microsoft.AnalysisServices.Design")]
property String^ DiscretizationMethod {
    String^ get();
    void set(String^ value);
}
[<XmlElementAttribute(IsNullable = false)>]
[<TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelColumnDiscretizationMethodTypeConverter, Microsoft.AnalysisServices.Design")>]
member DiscretizationMethod : string with get, set
<XmlElementAttribute(IsNullable := False)>
<TypeConverterAttribute("Microsoft.AnalysisServices.Design.MiningModelColumnDiscretizationMethodTypeConverter, Microsoft.AnalysisServices.Design")>
Public Property DiscretizationMethod As String

Property Value

Type: System.String

A String containing the method to be used for discretization.

Remarks

The value of DiscretizationMethod determines how values for the ScalarMiningStructureColumn are discretized, or organized into a specific set of groups. For more information about discretization methods, see Discretization Methods (Data Mining).

The value of this property is limited to one of the strings in the following table.

Value

Description

Automatic

Equivalent to the AUTOMATIC discretization method for mining structure columns.

EqualAreas

Equivalent to the EQUAL_AREAS discretization method for mining structure columns.

Clusters

Equivalent to the CLUSTERS discretization method for mining structure columns.

Thresholds

Equivalent to the THRESHOLDS discretization method for mining structure columns.

EqualRanges

Equivalent to the EQUAL_RANGES discretization method for mining structure columns.

See Also

ScalarMiningStructureColumn Class
Microsoft.AnalysisServices Namespace

Return to top