ml-tree-similarity
Compares two spectra using a tree similarity
Last updated 2 years ago by mljs-bot .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install ml-tree-similarity 
SYNC missed versions from official npm registry.

tree-similarity

NPM version Test coverage npm download

Compares two spectra using a tree similarity.

Installation

$ npm i ml-tree-similarity

Usage

import { createTree, treeSimilarity } from 'ml-tree-similarity';

const a = {
  x: [1, 2, 3, 4, 5, 6, 7],
  y: [0.3, 0.7, 4, 0.3, 0.2, 5, 0.3],
};
const b = {
  x: [1, 2, 3, 4, 5, 6, 7],
  y: [0.3, 4, 0.7, 0.3, 5, 0.2, 0.3],
};

// create a tree
const options = { from: 1, to: 7 };
const aTree = createTree(a, options);
const bTree = createTree(b, options);

const ans = treeSimilarity(aTree, bTree, options);

API Documentation

This algorithm was based in the following papers:

License

MIT

Current Tags

  • 2.2.0                                ...           latest (2 years ago)

6 Versions

  • 2.2.0                                ...           2 years ago
  • 2.1.0                                ...           2 years ago
  • 2.0.0                                ...           2 years ago
  • 1.0.0                                ...           7 years ago
  • 0.1.0                                ...           9 years ago
  • 0.0.0                                ...           11 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |