class Rule[Item] extends Serializable
An association rule between sets of items.
- Item
item type
- Annotations
- @Since( "1.5.0" )
- Source
- AssociationRules.scala
- Alphabetic
- By Inheritance
- Rule
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
val
antecedent: Array[Item]
- Annotations
- @Since( "1.5.0" )
-
def
confidence: Double
Returns the confidence of the rule.
Returns the confidence of the rule.
- Annotations
- @Since( "1.5.0" )
-
val
consequent: Array[Item]
- Annotations
- @Since( "1.5.0" )
-
def
javaAntecedent: List[Item]
Returns antecedent in a Java List.
Returns antecedent in a Java List.
- Annotations
- @Since( "1.5.0" )
-
def
javaConsequent: List[Item]
Returns consequent in a Java List.
Returns consequent in a Java List.
- Annotations
- @Since( "1.5.0" )
-
def
lift: Option[Double]
Returns the lift of the rule.
Returns the lift of the rule.
- Annotations
- @Since( "2.4.0" )
-
def
toString(): String
- Definition Classes
- Rule → AnyRef → Any