Last active
December 31, 2015 12:59
-
-
Save qoelet/7989738 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
inspect(sort(basketApriori, by="confidence")) | |
" | |
lhs rhs support confidence lift | |
1 {} => {Apparel and Accessories} 0.4846383 0.4846383 1 | |
2 {} => {Shoes} 0.3488603 0.3488603 1 | |
3 {} => {Accessories} 0.1219029 0.1219029 1 | |
" | |
# Lowering the support/confidence to negl levels | |
# just so I can add the minlen parameter | |
" | |
lhs rhs support confidence lift | |
1 {Accessories} => {Apparel and Accessories} 0.004955401 0.040650407 0.08387783 | |
2 {Shoes} => {Apparel and Accessories} 0.004459861 0.012784091 0.02637863 | |
3 {Apparel and Accessories} => {Accessories} 0.004955401 0.010224949 0.08387783 | |
4 {Apparel and Accessories} => {Shoes} 0.004459861 0.009202454 0.02637863 | |
" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment