@Reference(authors="S. Brin, R. Motwani, C. Silverstein", title="Beyond market baskets: Generalizing association rules to correlations", booktitle="ACM SIGMOD Record 26", url="https://doi.org/10.1145/253260.253327", bibkey="DBLP:conf/sigmod/BrinMS97") public class Lift extends java.lang.Object implements InterestingnessMeasure
\[ \tfrac{\text{confidence}(X\rightarrow Y)}{\text{support}(Y)} = \tfrac{\text{confidence}(Y\rightarrow X)}{\text{support}(X)} = \tfrac{P(X\cap Y)}{P(X)P(Y)} \]
Reference:
S. Brin, R. Motwani, C. Silverstein
Beyond market baskets: Generalizing association rules to correlations
In ACM SIGMOD Record 26
Constructor and Description |
---|
Lift()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
double |
measure(int t,
int sX,
int sY,
int sXY)
Computes the value of the measure for a given support values
|
public double measure(int t, int sX, int sY, int sXY)
InterestingnessMeasure
measure
in interface InterestingnessMeasure
t
- Total number of transactionsX
- Support of the antecedentsY
- Support of the consequentsXY
- Support of the union of antecedent and consequentCopyright © 2019 ELKI Development Team. License information.