Module datarush.analytics
Class ScoreDistribution
- java.lang.Object
-
- com.pervasive.datarush.analytics.decisiontree.ScoreDistribution
-
public final class ScoreDistribution extends Object
Corresponds to the PMMLScoreDistribution
element.
-
-
Constructor Summary
Constructors Constructor Description ScoreDistribution()
Creates an empty ScoreDistribution element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Double
getConfidence()
Returns the value of the "confidence" attribute.double
getRecordCount()
Returns the value of the "recordCount" attribute.String
getValue()
Returns the value of the "value" attribute.void
setConfidence(Double confidence)
Sets the value of the "confidence" attribute.void
setRecordCount(double recordCount)
Sets the value of the "recordCount" attribute.void
setValue(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.
-
-