Example – retail data

In this example, we'll use the Apriori algorithm to analyze a retail dataset. Start by creating a new folder for this project called Ch6-Apriori, and add the following package.json file:

{  "name": "Ch6-Apriori",  "version": "1.0.0",  "description": "ML in JS Example for Chapter 6 - Association Rules",  "main": "src/index.js",  "author": "Burak Kanber",  "license": "MIT",  "scripts": {    "build-web": "browserify src/index.js -o dist/index.js -t [ babelify --presets [ env ] ]",    "build-cli": "browserify src/index.js --node -o dist/index.js -t [ babelify --presets [ env ] ]",    "start": "yarn build-cli && node dist/index.js"  },  "dependencies": {    "apriori": "^1.0.7",    "babel-core": "^6.26.0",    "babel-plugin-transform-object-rest-spread" ...

Get Hands-on Machine Learning with JavaScript now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.