pandas is a fast, powerful, flexible and easy to use open source data analysis and manipulation tool, built on top of the Python programming language.
Series
DataFrame
is a collection of Series
With pandas you can
and much more.
import pandas as pd
# Let's import pandas and some other basic packages we will use
from __future__ import division
%matplotlib inline
import os
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd