September 2014
Intermediate to advanced
512 pages
12h 39m
English
In this first recipe, we will show how to conduct a preliminary analysis of a dataset with pandas. This is typically the first step after getting access to the data. pandas lets us load the data very easily, explore the variables, and make basic plots with matplotlib.
We will take a look at a dataset containing all ATP matches played by four tennis players until 2012. Here, we will focus on Roger Federer.
Download the Tennis dataset from the book's GitHub repository at https://github.com/ipython-books/cookbook-data, and extract it to the current directory.
In [1]: import numpy as np import pandas as pd import matplotlib.pyplot as plt ...
Read now
Unlock full access