1.0.0 • Published 4 years ago

simple-apriori v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Apriori

Npm Package for algoritma Apriori

How To Use

const apriori = require('simple-apriori');

var dataset = [
    'Pecel, Nasi Goreng, Tahu Campur, Tahu Telor, Sate, Bebek, Rawon, Rujak Cingur',
    'Nasi Goreng, Sego Sambel, Rujak Cingur, Bebek, Lontong Balap, Tahu Telor',
    'Rujak Cingur, Sego Sambel, Nasi Goreng, Sate, Bebek, Lontong Balap, Pecel',
    'Tahu Campur, Sate, Nasi Goreng',
    'Sego Sambel, Sate, Rujak Cingur, Nasi Goreng',
    'Tahu Campur, Nasi Goreng, Sate, Tahu Telor, Lontong Balap, Bebek',
    'Tahu Campur, Pecel, Sego Sambel, Rujak Cingur, Sate',
    'Bebek, Sego Sambel',
    'Nasi Goreng, Sego Sambel, Tahu Campur, Tahu Telor',
    'Sego Sambel, Rujak Cingur'
];

var support = 40;
var confidence = 40;

console.log(apriori.getApriori(dataset, support, confidence));