I'm trying to do an application for mining some texts from the web, but I'm not sure of what is the best way to perform text mining.

What I want with this question is know about what are the most used techniques/algorithms to perform text mining and do some information retrieval in documents (not for indexing).

link|improve this question

This would be an excellent question for bit.ly/u4lZUG. Why i'm posting this here and on other questions which are no intended SO-questions see goo.gl/trox6. – eowl Dec 3 '11 at 14:56
feedback

closed as not a real question by larsmans, bmargulies, tchrist, Sean Owen, yoda Nov 7 '11 at 14:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

3 Answers

up vote 2 down vote accepted

Text mining is a rather broad term, it roughly means machine learning applied to text. Common techniques include k-means clustering, Naive Bayes and linear SVM classification, tf-idf vectorization, SVD (called LSA when applied to text), latent Dirichlet allocation. So, performing "some text mining" might mean just about anything, just like doing "some information retrieval".

See Bing Liu's book Web Data Mining for a good intro to the field.

link|improve this answer
feedback

I think cluster analysis is most used technique for text mining.

link|improve this answer
feedback

Most basic text mining techniques is Regular expressions.

link|improve this answer
feedback

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