Skip to content

Commit

Permalink
fix image paths
Browse files Browse the repository at this point in the history
  • Loading branch information
JaredSchwartz committed Aug 10, 2024
1 parent 430acbe commit 0d1b705
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file added .github/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img width="400px" src="./docs/src/assets/logo.svg" title="RuleMiner.jl logo"/>
<img width="400px" src=".github/logo.png" title="RuleMiner.jl logo"/>
</p>

# RuleMiner.jl - Association Rule Mining in Julia
Expand Down
2 changes: 1 addition & 1 deletion docs/src/closed_itemsets.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Closed Itemset Mining

![Diagram showing maximal itemsets as a subset of closed itemsets which are a subset of frequent itemsets](./assets/closed.png)
![Diagram showing maximal itemsets as a subset of closed itemsets which are a subset of frequent itemsets](assets/closed.png)
## Description

Closed itemset mining is a set of techniques focused on discovering closed itemsets in a transactional dataset. A closed itemset is one which appears frequently in the data (above the minimum support threshold) and which has no superset with the same support. In other words, closed itemsets are the largest possible combinations of items that share the same transactions. They represent a lossless compression of the set of all frequent itemsets, as the support of any frequent itemset can be derived from the closed itemsets.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/frequent_itemsets.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Frequent Itemset Mining

![Diagram showing maximal itemsets as a subset of closed itemsets which are a subset of frequent itemsets](./assets/frequent.png)
![Diagram showing maximal itemsets as a subset of closed itemsets which are a subset of frequent itemsets](assets/frequent.png)
## Description

Frequent itemset mining is a fundamental technique in data mining focused on discovering itemsets that appear frequently in a transactional dataset. A frequent itemset is a set of items that occurs together in the data with a frequency no less than a specified minimum support threshold. Frequent itemsets form the basis of various data mining tasks, including association rule mining, sequential pattern mining, and correlation analysis.
Expand Down

0 comments on commit 0d1b705

Please sign in to comment.