Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 487 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 487 Bytes

SimpleARules

blunt implementation of apriori-like association rules

Installation

within julia package manager (Pkg)

pkg> add https://github.com/enrilohm/SimpleARules.jl.git

Example

using SimpleARules
transactions = [["eggs", "bacon", "soup"],
                ["eggs", "bacon", "apple"],
                ["soup", "bacon", "banana"]]
frequent(transactions, max_length=3, min_support=1)
apriori(transactions, max_length=3, min_support=1, min_confidence=0.1)