Using Pandas
Pandas is useful for organising and processing tabular data.
Installation
Conda
'conda install -c conda-forge pandas'
Pip
pip install pandas
Documentation
The Pandas documentation can be found here.
Importing
import pandas as pd
Load a csv file
df = pd.read_csv("file.csv")
Filtering data
TBC
Saving data
TBC
Binning data
TBC
Converting to numpy arrays
TBC