JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q52663F
  • License ISC

Location based app recommendation system.

Package Exports

  • apprecom

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (apprecom) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

AppRecom - Location based app recommendation algorithm.

AppRecom is a module that can be dropped into any JavaScript project.

Install

npm install apprecom

Methods

This system uses records from location-app relationships to predict the best app categories to recommend for a location.

The two main methods are:

// Trains the system on your data
train(data, min_support, min_conf)

// Gets the app category recommendations for location
// (after being trained)
getApps(location)

Check out the documentation for more information here.

Implementation

Check out ARI - an AppRecom CLI implementation that uses this module.