vote up 1 vote down star
1

How do I data mine a pile of text to get keywords by usage? ("Jacob Smith" or "fence")

And is there a software to do this already? even semi-automatically, and if it can filter out simple words like "the", "and", "or", then I could get to the topics quicker.

flag

5 Answers

vote up 3 vote down check

The general algorithm is going to go like this:

- Obtain Text
- Strip punctuation, special characters, etc.
- Strip "simple" words
- Split on Spaces
- Loop Over Split Text
    - Add word to Array/HashTable/Etc if it doesn't exist;
       if it does, increment counter for that word

The end result is a frequency count of all words in the text. You can then take these values and divide by the total number of words to get a percentage of frequency. Any further processing is up to you.

You're also going to want to look into Stemming. Stemming is used to reduce words to their root. For example going => go, cars => car, etc.

An algorithm like this is going to be common in spam filters, keyword indexing and the like.

link|flag
vote up 2 vote down

This is an open question in NLP, so there is no simple answer.

My recommendation for quick-and-dirty "works-for-me" is topia.termextract.

Yahoo has a keyword extraction service (http://developer.yahoo.com/search/content/V1/termExtraction.html) which is low recall but high precision. In other words, it gives you a small number of high quality terms, but misses many of the terms in your documents.

In Python, there is topia.termextract (http://pypi.python.org/pypi/topia.termextract/). It is relatively noisy, and proposes many bogus keywords, but it simple to use.

Termine (http://www.nactem.ac.uk/software/termine/) is a UK webservice that also is relatively noisy, and proposes many bogus keywords. However, it appears to me to be slightly more accurate than topia.termextract. YMMV.

One way to denoise results with too many keywords (e.g. topia.termextract and termine) is to create a vocabulary of terms that occur frequently, and then throw out proposed terms that are not in the vocabulary. In other words, do two passes over your corpus: The first pass, count the frequency of each keywords. In the second pass, discard the keywords that are too rare.

If you want to write your own, perhaps the best introduction is written by Park, who is now at IBM:

  • "Automatic glossary extraction: beyond terminology identification" available at http://portal.acm.org/citation.cfm?id=1072370
  • "Glossary extraction and utilization in the information search and delivery system for IBM technical support"

Here are some more references, if you want to learn more:

  • http://en.wikipedia.org/wiki/Terminology_extraction
  • "CorePhrase: Keyphrase Extraction for Document Clustering"
  • Liu et al 2009 from NAACL HLT
  • "Automatic Identification of Non-compositional Phrases"
  • "Data Mining Meets Collocations Discovery"
  • As well as a host of other references you can dig up on the subject.
link|flag
1  
+1 Impressive. Very detailed answer! – Jeremy Rudd Oct 16 at 0:16
vote up 2 vote down

You did not specify a technology you're working with, so I guess a shell script is also a possibility.

I've always been impressed by the word frequency analysis example in the Advanced Bash-Scripting Guide (12-11)

The following for example fetches a book from project Gutenburg and writes out a word frequency analysis 'report':

wget http://www.gutenberg.org/files/20417/20417-8.txt -q -O- | 
sed -e 's/\.//g'  -e 's/\,//g' -e 's/ /\
/g' | tr 'A-Z' 'a-z' | sort | uniq -c | sort -nr > output.txt

Should be extendable to exclude words from a 'common' list (the, and, a...) etc.

link|flag
vote up 0 vote down

First of all you need to be clear exactly what constitutes a keyword. This is by far the most important step. Once you have done this, others will be able to advise you on how to turn that requirement into a regular expression, or other type of filter.

link|flag
vote up 0 vote down

You may try to do it with PilotEdit
1. Open the file with PilotEdit
2. Change all the blanks and tabs into carriage return. (Just find/replace) By doing this, we can make sure that each line have only one word.
3. Click "Sort" button in the toolbar and click button "Find Duplicated Lines" in the popup dialog. You will be able to get result as below:
File2[7]:
File2[18]:
File2[32]:
- - - - - - - - - - File2: Found 3 "". - - - - - - - - - -

File2[8]: #include
File2[12]: #include
File2[14]: #include
File2[16]: #include
- - - - - - - - - - File2: Found 4 "#include". - - - - - - - - - -

File2[1]: //
File2[6]: //
- - - - - - - - - - File2: Found 2 "//". - - - - - - - - - -

link|flag

Your Answer

Get an OpenID
or

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