Socket
Socket
Sign inDemoInstall

naivebayes-predictor

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    naivebayes-predictor

Naive Bayes classifier that also uses continuous variables and log scale.


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
8.44 kB
Created
Weekly downloads
 

Readme

Source

Naive Bayes classifier

Description

A simple node.js module for Naive Bayes classifier.

It works also with continuous variables and can return results in log scale. There is also a function to clean the dataset.

Installation

$ npm install naivebayes-predictor

Example

'use strict';

// Require Naive Bayes module
const NaiveBayes = require('naivebayes-predictor');

// Get a dataset
let dataset = [
  {skill: 'mathematics', industry: 'finance', age: 18, score: 5, verified: 0},
  {skill: 'mathematics', industry: 'finance', age: 18, score: 6, verified: 0},
  {skill: 'mathematics', industry: 'business', age: 18, score: 8, verified: 1},
  {skill: 'mathematics', industry: 'finance', age: 18, score: 7, verified: 0},
  {skill: 'economy', industry: 'finance', age: 30, score: 4, verified: 1},
  {skill: 'economy', industry: 'sales', age: 32, score: 3, verified: 0},
  {skill: 'economy', industry: 'business', age: 31, score: 3, verified: 1},
  {skill: 'economy', industry: 'business', age: 34, score: 4, verified: 1},
    {...}
];

// Make continuous variables discrete detecting range intervals inside every single variable
dataset = naive.discretizeDataset(
  dataset,
  ["verified"] // List of continuous variables to not convert as discrete
);

// Train the model
naive.train(
 dataset,
 "skill"  // Name of the label to classify
);

// Compute the results
naive.compute();
// Distribution in scale from 0.0 to 1.0

// Show the results about "skill" feature
console.log(naive.results);
// { mathematics: 0.017578125, economy: 0.0029296875 }

// Clean the model and the results
naive.cleanTheModel();

// Use another dataset
dataset = [{...}, {...}, etc.];

// Optional: clean the dataset from some variable
dataset = naive.cleanDataset(
  dataset,
  ['PassengerId','Name'] // The names of the variables to delete
);

// Make continuous variables discrete detecting range intervals inside every single variable
dataset = naive.discretizeDataset(
  dataset,
  ["Survived"] // List of continuous variables to not convert as discrete
);

// Train the model
naive.train(
 dataset,
 "Survived" // Name of the label to classify
);

// Compute the results
naive.compute();
// Distribution in scale from 0.0 to 1.0

// Compute the results in log scale
naive.computeInLogScale();
// More negative is the value more small the probability
// { '0': -3361.759725902712, '1': -2087.72499485088 }

// Show the results about "Survived" feature
console.log(naive.results);

Keywords

FAQs

Last updated on 20 Sep 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc