Package com.bayesserver.analysis
Class AutoInsightStateOutput
- java.lang.Object
-
- com.bayesserver.analysis.AutoInsightStateOutput
-
public final class AutoInsightStateOutput extends Object
Contains the results obtained fromAutoInsight
for each test variable.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Double
getDifference()
Gets the difference between the probability of this state given the target state and the probability of this state excluding the target state.Double
getLift()
Gets the ratio of the probability of this state given the target state over the probability of this state excluding the target state.AutoInsightStateOutputCollection
getParent()
Gets the parent collection.Double
getProbability()
Gets the probability of this state with no evidence set on the target state.Double
getProbabilityGivenTarget()
Gets the probability of this state given the target state.Double
getProbabilityTargetGivenThis()
Gets the probability of the target state given this state.State
getState()
Gets the state this insight refers to.
-
-
-
Method Detail
-
getParent
public AutoInsightStateOutputCollection getParent()
Gets the parent collection.
-
getState
public State getState()
Gets the state this insight refers to.
-
getProbabilityTargetGivenThis
public Double getProbabilityTargetGivenThis()
Gets the probability of the target state given this state. Note that auto insight can be called with background evidence set on certain variables, in which case this result includes that evidence.
-
getProbability
public Double getProbability()
Gets the probability of this state with no evidence set on the target state. Note that auto insight can be called with background evidence set on certain variables, in which case this is the probability given that evidence alone.
-
getProbabilityGivenTarget
public Double getProbabilityGivenTarget()
Gets the probability of this state given the target state. Note that auto insight can be called with background evidence set on certain variables, in which case this is the probability given that evidence and the target.
-
getLift
public Double getLift()
Gets the ratio of the probability of this state given the target state over the probability of this state excluding the target state. Note that auto insight can be called with background evidence set on certain variables, in which case these values will be conditioned on that evidence also.- See Also:
.
-
getDifference
public Double getDifference()
Gets the difference between the probability of this state given the target state and the probability of this state excluding the target state. Note that auto insight can be called with background evidence set on certain variables, in which case these values will be conditioned on that evidence also.- See Also:
.
-
-