I am using apriori to find assocaition rules and I am running into an issue:
| rule | support | confidence | lift | coverage |
|---------------|--------------------|------------------|--------------|-------------------|
| {A} => {B} | 8.616999e-05 | 0.01502544 | 19.11896 | 0.005734940 |
| {A} => {C} | 8.944227e-05 | 0.01559602 | 49.05084 | 0.005734940 |
The manual states that Coverage: Provides the generic function and the needed S4 method to calculate the coverage (support of the left-hand-side) of rules.
For a small ruleset coverage is equal to support. Why does coverage differ from support for large rulesets?