Skip to content

About the Python libraries used in this repo

Khelil Sator edited this page Jun 20, 2019 · 2 revisions

I am using the following Python libraries in this repo

scikit-learn

Scikit-Learn, also known as sklearn, is Python general-purpose machine learning library
Scikit-Learn is very versatile.

sklearn requires python 3

pip3 install sklearn

numpy

Arrays are used to store multiple values in one single variable.
An array is a kind of list.
All the elements in an array are the exact same type

The numpy python library will be used to handle arrays

Pandas

Pandas is a python library for data manipulation. So you can manipulate a dataset with Pandas

matplotlib

matplotlib is a python plotting library

seaborn

seaborn is a python data visualization library based on matplotlib

pip3 install seaborn