-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
46 changed files
with
612 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# DATAMINING | ||
# Datamining | ||
## CONTENTS | ||
- [ASSOCIATION_RULES](pages/association_rules/ASSOCIATION_RULES.md) | ||
- [CLASSIFICATION](pages/classification/CLASSIFICATION.md) | ||
- [CLUSTERING](pages/clustering/CLUSTERING.md) | ||
- [BUSINESS_INTELLIGENCE_AND_DATA_WAREHOUSE](pages/datamining_process/BUSINESS_INTELLIGENCE_AND_DATA_WAREHOUSE.md) | ||
- [DATA_PREPROCESSING](pages/preprocessing/DATA_PREPROCESSING.md) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 12 additions & 3 deletions
15
...ciation_rules/ASSOCIATION RULES MINING.md → ...ciation_rules/ASSOCIATION_RULES_MINING.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
--- | ||
id: ASSOCIATION RULES MINING | ||
aliases: [] | ||
tags: [] | ||
index: 2 | ||
--- | ||
|
||
# ASSOCIATION RULES MINING | ||
|
||
The goal of this procedure it's, given a list of $N$ item-set, finding association rules that have $conf$ and $sup$ grater than some thresholds | ||
The goal of this procedure it's, given a list of $N$ item-set, finding association rules that have $conf$ and $sup$ grater than some thresholds | ||
|
||
## BRUTE-FORCE APPROACH | ||
|
||
generate all possible combination and compute $conf$ and $sup$, this approach is always possible but is too much computational expensive | ||
|
||
## TWO STEP APPROACH | ||
|
||
this approach is based on the fact that rules that are generated from the same item-set have the same $sup$ | ||
this approach is based on the fact that rules that are generated from the same item-set have the same $sup$ | ||
|
||
- **[frequent itemset generation](FREQUENT%20ITEMSET%20GENERATION.md)** -> in the first step all item-set that have $sup \gt threshold$ are generated (**this step is still computational expensive**) | ||
- **[frequent itemset generation](FREQUENT_ITEMSET_GENERATION.md)** -> in the first step all item-set that have $sup \gt threshold$ are generated (**this step is still computational expensive**) | ||
- **RULE GENERATION** -> in the second step rules with high confidence are generated from the previous generated item-sets | ||
|
||
[PREVIOUS](ASSOCIATION_RULES.md) [NEXT](RULES_GENERATION.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.