MiningStructure.HoldoutActualSize Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the size of the holdout partition that is associated with a MiningStructure. This value is read-only and is not available until the MiningStructure has been processed.

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

Syntax

[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")]
[DefaultValueAttribute(0)]
[BrowsableAttribute(false)]
[ReadOnlyAttribute(true)]
public long HoldoutActualSize { get; set; }
public:
[XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")]
[DefaultValueAttribute(0)]
[BrowsableAttribute(false)]
[ReadOnlyAttribute(true)]
property long long HoldoutActualSize {
    long long get();
    void set(long long value);
}
[<XmlElementAttribute(Namespace = "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")>]
[<DefaultValueAttribute(0)>]
[<BrowsableAttribute(false)>]
[<ReadOnlyAttribute(true)>]
member HoldoutActualSize : int64 with get, set
<XmlElementAttribute(Namespace := "https://schemas.microsoft.com/analysisservices/2008/engine/100/100")>
<DefaultValueAttribute(0)>
<BrowsableAttribute(False)>
<ReadOnlyAttribute(True)>
Public Property HoldoutActualSize As Long

Property Value

Type: System.Int64

An integer that indicates the number of cases in the partition used as testing data. 0 indicates that no test partition exists, or that the structure as not been processed.

Remarks

This value is dependent on source data and on the values specified for HoldoutMaxCases, HoldoutMaxPercent, and HoldoutSeed. This value is updated after processing; therefore, if you make any changes in the source data or the holdout specification, you must also reprocess the mining structure.

Note

Analysis Services does not support creation of holdout partitions on a mining structure. You cannot get or set a value for HoldoutActualSize on a mining structure that is stored in an instance of Analysis Services.

See Also

MiningStructure Class
Microsoft.AnalysisServices Namespace

Return to top