Tested tool guide
Tested browser tools
Checked August 16, 2026
What TF-IDF Content Analyzer does, with a checked example
Drop in a draft and a set of comparison documents - competitor posts, category benchmarks, or your own archive - and this tool scores every term with the tf-idf formula: how often a word appears in your text, weighed against how rare it is across the corpus. The analysis runs entirely in the browser; pasted drafts never leave the machine. The result most people misread: topic words like 'marketing' or 'blog' often score near zero because every benchmark document contains them, while oddly specific words rank highest. The output is a term-weighting lens, not a keyword-rank guarantee.
Worked example
A concrete input and expected output from the current implementation.
Input
draft: email marketing for small business
corpus:
1. email marketing campaigns for small business
2. social media marketing for restaurants
3. email marketing for ecommerce startups
->
Expected output
small 1.099
business 1.099
email 0.405
marketing 0.000
for 0.000
With a 3-document corpus, idf = ln(3 / documents containing the term). 'small' and 'business' occur in one corpus document (ln(3/1) ~ 1.10), 'email' in two (ln(3/2) ~ 0.41), and 'marketing' and 'for' in all three (ln(3/3) = 0), which zeroes their weight even though the draft is about marketing.