Package com.bayesserver.data.discovery
Class VariableInfo
- java.lang.Object
-
- com.bayesserver.data.discovery.VariableInfo
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VariableInfoCountsgetCounts()Gets counts such as missing and non-missing data for the variable.booleangetIsConstant()Gets a value which when true indicates that the variable has a constant value.VariableInfoValuegetMissingProbability()Gets weighted and unweighted values between 0 and 1 indicating the percentage of data that is missing for this variable.VariablegetVariable()Gets the generatedVariable.
-
-
-
Method Detail
-
getMissingProbability
public VariableInfoValue getMissingProbability()
Gets weighted and unweighted values between 0 and 1 indicating the percentage of data that is missing for this variable.
-
getCounts
public VariableInfoCounts getCounts()
Gets counts such as missing and non-missing data for the variable.
-
getIsConstant
public boolean getIsConstant()
Gets a value which when true indicates that the variable has a constant value. For discrete this indicates a single state, for continuous this indicates zero variance.
-
-