Module datarush.analytics
Class ScoreDistribution
- java.lang.Object
-
- com.pervasive.datarush.analytics.decisiontree.ScoreDistribution
-
public final class ScoreDistribution extends Object
Corresponds to the PMMLScoreDistributionelement.
-
-
Constructor Summary
Constructors Constructor Description ScoreDistribution()Creates an empty ScoreDistribution element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DoublegetConfidence()Returns the value of the "confidence" attribute.doublegetRecordCount()Returns the value of the "recordCount" attribute.StringgetValue()Returns the value of the "value" attribute.voidsetConfidence(Double confidence)Sets the value of the "confidence" attribute.voidsetRecordCount(double recordCount)Sets the value of the "recordCount" attribute.voidsetValue(String value)Sets the value of the "value" attribute.
-
-
-
Method Detail
-
getValue
public final String getValue()
Returns the value of the "value" attribute.- Returns:
- the value of the "value" attribute.
-
setValue
public final void setValue(String value)
Sets the value of the "value" attribute.- Parameters:
value- the value of the "value" attribute.
-
getRecordCount
public final double getRecordCount()
Returns the value of the "recordCount" attribute.- Returns:
- the value of the "recordCount" attribute.
-
setRecordCount
public final void setRecordCount(double recordCount)
Sets the value of the "recordCount" attribute.- Parameters:
recordCount- the value of the "recordCount" attribute.
-
getConfidence
public final Double getConfidence()
Returns the value of the "confidence" attribute.- Returns:
- the value of the "confidence" attribute.
-
setConfidence
public final void setConfidence(Double confidence)
Sets the value of the "confidence" attribute.- Parameters:
confidence- the value of the "confidence" attribute.
-
-