Handling with data with Python and Pandas

In this set of notebooks we'll be looking at how to work with data using pandas.

Prerequisites:

In this section I assume that you have worked through the notebooks and exercises in the Introduction to Jupyter notebooks section.

Schedule:

Section Description
Introduction to pandas Introduction to the pandas package
Cleaning data with pandas How to clean a dataset
Analysing dataframes Analysing data and doing some science
Further exercises Further exercises

Setup:

If you are using anaconda, the pandas package is most likely already installed. If you don't already have it you can install it with one of the following options:

  • Search for pandas in anaconda navigator
  • Run conda install pandas from a terminal
  • Run !pip install pandas from a notebook cell.

If you don't have it installed and you can't get any of the above to work, please post to the teams channel or email me directly.

In [ ]: