vote up 1 vote down star
1

Iam learning data mining and wondered how Python figures when it comes to data mining? Are there good tools for data mining in python?

flag

78% accept rate
what are you learning exactly ? – Stefano Borini Aug 24 at 11:10
I need to use data mining for some work. I just got started on it. I was just looking for pointers related to data mining and python. – Goutham Aug 24 at 11:32

4 Answers

vote up 4 vote down check

The book Programming Collective Intelligence might be a great start for you. It uses Python and implements a couple of interesting data mining algorithms, covering lots of ground.

link|flag
Thanks. Saw this suggested elsewhere too. Will give it a shot. – Goutham Aug 24 at 11:33
2  
The same author, Toby Segaran, occupation "data magnate", also has a good new book I am just starting called Programming the Semantic Web, which is more about real data mining than some of the theoretical linguistic stuff associated with the term. – bvmou Aug 24 at 18:04
Interesting, I did not know about the new book, thanks. – nikow Aug 24 at 18:15
vote up 1 vote down

The question is a bit ambiguous, but IMHO, with Python being a great all-round language, there is no reason why you can't use it for data mining.

You also have the advantage that Python/GTK could be used for displaying progress and/or output

It also have a great range of libraries.

If you want to distribute your data mining across many servers, each with discrete data then you could have a look at Parallel Python for distributing workloads.

I say, in place of a DSL, why not?

Other languages such as Erlang might also be of interest (and it is all the rage so you will be down with the kids too :S )

link|flag
vote up 3 vote down

The Orange data-mining framework is written in, and extensible via, Python.

link|flag
+1, loving the retro UI on that – Aiden Bell Aug 24 at 11:30
I checked out orange. Pretty cool. But no updates so far for python 2.6 and 3.x – Goutham Aug 24 at 11:34
vote up 0 vote down

While Collective Intelligence is excellent and does use Python, an actual TOOL that's ready to go is the Orange Toolkit as mentioned by user Dirk Eddelbuettel.

It gives you a visual environment within which you can build your DM process. It also gives you scriptability of all the components via Python.

link|flag

Your Answer

Get an OpenID
or

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