Package com.bayesserver.analysis
Class AssociationPair
- java.lang.Object
- 
- com.bayesserver.analysis.AssociationPair
 
- 
 public final class AssociationPair extends Object Defines two sets of variables to be analyzed by the Association algorithm.
- 
- 
Constructor SummaryConstructors Constructor Description AssociationPair(Node x, Node y)Initializes a new instance of theAssociationPairclass with individual nodes.AssociationPair(Variable x, Variable y)Initializes a new instance of theAssociationPairclass with individual variables.AssociationPair(List<VariableContext> x, List<VariableContext> y)Initializes a new instance of theAssociationPairclass with two sets of variable contexts.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description List<VariableContext>getX()Gets the variable contexts in the first set.List<VariableContext>getY()Gets the varible contexts in the second set.
 
- 
- 
- 
Constructor Detail- 
AssociationPairpublic AssociationPair(Variable x, Variable y) Initializes a new instance of theAssociationPairclass with individual variables.
 - 
AssociationPairpublic AssociationPair(Node x, Node y) Initializes a new instance of theAssociationPairclass with individual nodes. You can test the strength of a link by setting x = link.From and y= link.To.
 - 
AssociationPairpublic AssociationPair(List<VariableContext> x, List<VariableContext> y) Initializes a new instance of theAssociationPairclass with two sets of variable contexts.
 
- 
 - 
Method Detail- 
getXpublic List<VariableContext> getX() Gets the variable contexts in the first set.
 - 
getYpublic List<VariableContext> getY() Gets the varible contexts in the second set.
 
- 
 
-