Skip to content
forked from ymoch/apyori

A simple implementation of Apriori algorithm by Python.

License

Notifications You must be signed in to change notification settings

Arsalanliaqat/apyori

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basic usage

apyori-run < data/transaction.tsv

Use TSV output

apyori-run -f tsv < data/transaction.tsv

Fields of output mean: - Base item. - Appended item. - Support. - Confidence. - Lift.

Specify the minimum support

apyori-run -s 0.5 < data/transaction.tsv

Specify the minimum confidence

apyori-run -c 0.5 < data/transaction.tsv

About

A simple implementation of Apriori algorithm by Python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%