Starting pandas

As with any Python module, you have to "activate" pandas by using import. The "standard" alias for pandas is pd. We will also import numpy, since pandas uses some numpy functions in the workflows.

import numpy as np 
import pandas as pd