Monday, September 4, 2017

Data Science with python

Advice for beginners:
Always use a environment manager the most common are Conda and Virtualenv, I personally use Virtualenv but most people prefer Conda.

Most common packages you will need for data science is pandas and numpy.
If you use python 3 install a package with pip3 package_name.
Take a look at TensorFlow for machine learning!.

To install a package you tape in the console:
pip install LIBRARYNAME
Great python Libraries

Matplotlib matplotlib.org/index.html
NumPy www.numpy.org
SciPy www.scipy.org
scikit-learn scikit-learn.org
TensorFlow www.tensorflow.org
OpenCV opencv.org




Do not forget to begin your script with the package that you will use.
import pandas as pd
import numpy as np
import csv


to be continued...

No comments:

Post a Comment