Book Image

Learning pandas - Second Edition

By : Michael Heydt
Book Image

Learning pandas - Second Edition

By: Michael Heydt

Overview of this book

You will learn how to use pandas to perform data analysis in Python. You will start with an overview of data analysis and iteratively progress from modeling data, to accessing data from remote sources, performing numeric and statistical analysis, through indexing and performing aggregate analysis, and finally to visualizing statistical data and applying pandas to finance. With the knowledge you gain from this book, you will quickly learn pandas and how it can empower you in the exciting world of data manipulation, analysis and science.
Table of Contents (16 chapters)

Up and Running with pandas

In this chapter, we will cover how to install pandas and start using its basic functionality. The content of the book is provided as IPython and Jupyter notebooks, and hence we will also take a quick look at using both of those tools.

This book will utilize the Anaconda scientific Python distribution from Continuum. Anaconda is a popular Python distribution with both free and paid components. Anaconda provides cross-platform support, including Windows, Mac, and Linux. The base distribution of Anaconda installs pandas, IPython and Jupyter Notebook, thereby making it almost trivial to get started.

In this chapter will cover the following topics:

  • Installation of Anaconda, pandas, and IPython/Jupyter Notebook
  • Using IPython and Jupyter Notebook
  • Jupyter and its notebooks
  • Setting up your pandas environments
  • A quick introduction to the pandas Series and DataFrame...