Skip to content

Latest commit

 

History

History
98 lines (84 loc) · 5.11 KB

README.md

File metadata and controls

98 lines (84 loc) · 5.11 KB

Overview

This cheatsheet covers the minimal key aspects on how to use "the Numpy Stack". This stack is foundational to any machine learning and data science work done in Python.

The cheat sheet covers:

  1. Python: the absolute bare minimum you need to know to do something useful.
  2. Numpy: provides the basic numpy array abstraction to work with multi-dimensional arrays in Python. Everything else is built upon this.
  3. Matplotlib: A library for data visualization.
  4. Pandas: a library for reading, writing and manipulating data.
  5. SciPy: statistical computations (among many other things).

The work is based on a mixture of different resources. Notably:

Table of Content

Part 1- Python

Part 2 - Numpy

Part 3 - Matplotlib

Part 4 - Pandas

Part 5 - SciPy