0
Could Python use in data mining? If it couldn't, Could SQL use in data mining?
Data mining
7 Antworten
+ 1
Yes there are a few libraries for data mining.
Main ones you should learn are scikit, pandas and maybe a visualization one for data analysis and requests for web crawling.
There are many guides out there on how to do it and even books. I saw recently a book literally called 'Data mining with Python' . So just search for a guide and start programming
0
So data mining could be used by Python and SQL
0
Oke.
0
Thankyou for your answer.
0
How I could download Python libraries like you say?
0
Usually when you download the Python interpreter you also download a program called pip or pip3
If you are going to use Python 3 use pip3 if not, just use pip
Wih pip/pip3 put this command: pip/pip3 search 'keyword' to look for a library and it will display info about it.
To install a library use: pip/pip3 install 'keyword'
*Use only pip or pip3
Substitute keyword for the library you want
**If you don't have pip you will have to install it manually
0
Thanks a lot.