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 Summary
Constructors Constructor Description AssociationPair(Node x, Node y)
Initializes a new instance of theAssociationPair
class with individual nodes.AssociationPair(Variable x, Variable y)
Initializes a new instance of theAssociationPair
class with individual variables.AssociationPair(List<VariableContext> x, List<VariableContext> y)
Initializes a new instance of theAssociationPair
class with two sets of variable contexts.
-
Method Summary
All 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
-
AssociationPair
public AssociationPair(Variable x, Variable y)
Initializes a new instance of theAssociationPair
class with individual variables.
-
AssociationPair
public AssociationPair(Node x, Node y)
Initializes a new instance of theAssociationPair
class with individual nodes. You can test the strength of a link by setting x = link.From and y= link.To.
-
AssociationPair
public AssociationPair(List<VariableContext> x, List<VariableContext> y)
Initializes a new instance of theAssociationPair
class with two sets of variable contexts.
-
-
Method Detail
-
getX
public List<VariableContext> getX()
Gets the variable contexts in the first set.
-
getY
public List<VariableContext> getY()
Gets the varible contexts in the second set.
-
-