Module datarush.analytics
Class ContinuousInputMappingModel
- java.lang.Object
-
- com.pervasive.datarush.analytics.naivebayes.InputMappingModel
-
- com.pervasive.datarush.analytics.naivebayes.ContinuousInputMappingModel
-
public final class ContinuousInputMappingModel extends InputMappingModel
PMML Input Mapping for continuous ( numerical ) data.
-
-
Constructor Summary
Constructors Constructor Description ContinuousInputMappingModel()
Create an empty ContinuousMappingModel.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,TargetStatistics>
getTargetStatistics()
Gets the map of target statistics.void
setTargetStatistics(Map<String,TargetStatistics> targetStatistics)
Sets the map of target statistics.
-
-
-
Method Detail
-
setTargetStatistics
public void setTargetStatistics(Map<String,TargetStatistics> targetStatistics)
Sets the map of target statistics. Keys in the map are target names. Values in the map the the correspondingTargetStatistics
object.- Parameters:
targetStatistics
- the map of target statistics
-
getTargetStatistics
public Map<String,TargetStatistics> getTargetStatistics()
Gets the map of target statistics. Keys in the map are target names. Values in the map the the correspondingTargetStatistics
object.- Returns:
- the map of target statistics
-
-