tf-idf

A simple tf-idf implementation for text documents

Usage no npm install needed!

<script type="module">
  import tfIdf from 'https://cdn.skypack.dev/tf-idf';
</script>

README

tf-idf

This module returns the rank of each test document in a folder according to the tf-idf algorithm for a particular search term.

Installation

$ npm install tf-idf

Usage

var tfidf = require('tf-idf');

tfidf.getRank('path/to/directory', 'search-term', function (err, docRank) { });

docRank = [{'file':, 'tfidf':}