Package com.bayesserver.analysis
Class AutoInsightOutput
- java.lang.Object
 - 
- com.bayesserver.analysis.AutoInsightOutput
 
 
- 
public final class AutoInsightOutput extends Object
Contains the results obtained fromAutoInsight. 
- 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Interval<Double>getContinuousTargetInterval()Gets the target interval (if any).booleangetIsApproximate()Gets a value which when true indicates that the auto-insight calculations were approximated using sampling.StategetTarget()Gets the target state used to calculate the insight.doublegetTargetProbability()Gets the probability of the target state, given any optional background evidence.AutoInsightVariableOutputCollectiongetVariableOutputs()Contains the insights from each test variable.voidsetContinuousTargetInterval(Interval<Double> value)Gets the target interval (if any).voidsetIsApproximate(boolean value)Gets a value which when true indicates that the auto-insight calculations were approximated using sampling. 
 - 
 
- 
- 
Method Detail
- 
getTarget
public State getTarget()
Gets the target state used to calculate the insight. 
- 
getContinuousTargetInterval
public Interval<Double> getContinuousTargetInterval()
Gets the target interval (if any). This will be only be set for continuous targets. 
- 
setContinuousTargetInterval
public void setContinuousTargetInterval(Interval<Double> value)
Gets the target interval (if any). This will be only be set for continuous targets. 
- 
getIsApproximate
public boolean getIsApproximate()
Gets a value which when true indicates that the auto-insight calculations were approximated using sampling. 
- 
setIsApproximate
public void setIsApproximate(boolean value)
Gets a value which when true indicates that the auto-insight calculations were approximated using sampling. 
- 
getTargetProbability
public double getTargetProbability()
Gets the probability of the target state, given any optional background evidence. 
- 
getVariableOutputs
public AutoInsightVariableOutputCollection getVariableOutputs()
Contains the insights from each test variable. 
 - 
 
 -