Automatic taxonomy generation

Asked by Jamie

From within the API, Is there a way to get a list of common words for the whole db? i.e., the most used words, but without common english words? It could be useful to auto-create tag or keyword lists.

Question information

Language:
English Edit question
Status:
Solved
For:
Hypy Edit question
Assignee:
No assignee Edit question
Solved by:
Cory Dodt
Solved:
Last query:
Last reply:
Revision history for this message
Cory Dodt (corydodt) said :
#1

There's actually a name for that - automatic taxonomy generation. This is probably close to what you want:

estcmd words <database> | sort -k2 -n

Revision history for this message
Jamie (jamieson-becker) said :
#2

Excellent! Thanks. Is there a way to do this from within the Python API?

Revision history for this message
Best Cory Dodt (corydodt) said :
#3

Not at present.

Revision history for this message
Jamie (jamieson-becker) said :
#4

Ok thanks!