8

I would like a utility that could analyze a document and give me stats like this:

WORD:           FREQUENCY:
a               47,268
the             37,201
gross           215
irregardlessly  1  

Does anyone know if this is available?

BTW, I'd rather not use an online tool. Call me paranoid, but uploading my unpublished novel to the internet, to me, would be akin to walking down main street with nothing but a condom on. :)

5
  • I don't understand your metaphor. Plus, I would say that this question should be asked on Software Recommendations
    – Ooker
    Commented Jul 30, 2016 at 10:02
  • @Ooker The word "akin" makes it a simile, right? :)
    – Chowzen
    Commented Aug 1, 2016 at 14:19
  • I know that you are making a simile, but I still don't see how not using an online tool is akin to walking down naked with only a condom on :-s
    – Ooker
    Commented Aug 1, 2016 at 16:51
  • @Ooker I'm saying that I would feel exposed, naked. That I'm taking this personal, private, precious thing of mine and allowing it to be seen by the world, potentially. It could be stolen, plagiarized, even distributed as a whole in electronic form before I have a chance to get it published in print, rendering any print version less valuable. Again, you may call me paranoid if you like.
    – Chowzen
    Commented Aug 2, 2016 at 10:04
  • ok, you are halfly paranoid :)
    – Ooker
    Commented Aug 2, 2016 at 11:15

4 Answers 4

3

My beloved Scrivener does the job beautifully. Paste your text in and then go under Project —> Text Statistics and it gives you the list you're looking for.

Other people on this board have recommended Word Counter (Mac) and both Primitive Word Counter and yWriter (Windows), but I cannot speak to their utility as I've never used them.

2
  • I've started the trial, and while impressed with the program as a whole, the text statistics report is a bit weak. It produces a small box showing word, count and percentage of that word in the entire document. The report box is not resizable, meaning anything other than small words are cut off: "produce," "producer," and "productivity" all register as separate words that only occur once, but they all only show up as "produ..." until the word is hovered over for a second, then a popup shows the word. I don't see how the report can be exported, either, which would be nice.
    – Chowzen
    Commented Aug 2, 2016 at 10:25
  • 1
    Caveat! There is an app in the Mac AppStore called Word-Counter, not Word Counter. (Note the dash). Don't buy it. It's not the same one that is referred to in the link in this answer and does not do word frequency. Commented May 10, 2017 at 1:38
1

Notetab Light (and the paid version, too) for Windows offered this feature the last time I used it. It's an older text editor with loads features that I used before converting to Linux, which happened in 2007 or so.

I use an editor I made myself, now, with that feature and lots of others I like.

0

If you have access to Linux or Cygwin on Windows, you can get it to tell you just about anything you want to know about your text with a few lines of shell code. Here's one approach.

Here's another article which explains the process in more detail.

In this case, you would probably first have to copy your text from its native format and then paste it without formatting into a text file so the internal formatting codes, etc. don't interfere with the logic.

The advantage of an approach like this is that, with a little effort, you can get your tool to report anything you want in exactly the format you want it in.

Microsoft is also talking about adding such shell capabilities into an upcoming release of Windows 10.

If you're on a Mac, you probably already have all of the necessary tools installed.

0

Most Tex and LaTeX editors how text analysis that give you a number of uses of each word in a block, in a table, and so on. For example TEXstudio is a popular one.

Not the answer you're looking for? Browse other questions tagged or ask your own question.