Some features of numpy arrays
Wed 06 February 2019 by Franz Kirsten- check out the numpy website for docs and the like
- feel free to download and play around with the jupyter notebook on numpy
Installation
- assuming you have 'pip' installed run the following
pip install numpy
pandas
Wed 12 December 2018
by Chiara Ceccobello
pandas: powerful Python data analysis toolkit
Useful links:
A tip: Whenever you are using pandas
in your own code, try and stick to the following convention:
import pandas as pd
This will make it easier for other people to understand your …
read more