/ca-pandas-webinars

This is the companion repository of the Cloud Academy Webinar Series on Pandas.

Primary LanguageJupyter Notebook

Cloud Academy Pandas Webinar Series

Speaker info

This webinar is held by Andrea Giussani, Data Scientist at Cloud Academy. You can reach him out wither at 📧 or on Linkedin, and you can follow him on his 🚀 blog.

Repository Structure

You will find:

  • a data folder containing the data used in this series;
  • a folder called part-01 containing the material related to the first episode entitled How to filter your data source. The recording of the webinar is available here;
  • a folder called part-02 containing the material related to the second episode entitled How to manage and manipulate your data. The recording of the webinar is available here;
  • a folder called part-03 containing the material related to the third episode entitled How to transform your data.

Setting Up the Google Colab Environment

The Google Colab is a product from Google Research which allows

anybody to write and execute arbitrary python code through the browser, and is especially well suited to machine learning, data analysis and education. More technically, Colab is a hosted Jupyter notebook service that requires no setup to use, while providing free access to computing resources including GPUs.

For more information, please visit the following link.

Here, we provide a short tutorial on how to upload the data on that environemnt via Google drive, and then use the Google colab to run your analysis. Please, note that we assume you have a google account to access to this Google product.

1. Open a Google Colab session

From your favourite browser, open a new colab notebook via the following link

2. Mount your drive on colab

We assume you have placed the data into the My Drive folder. If so, connecting your drive to a google machine is pretty easy, using the python google library: just run the following code snippet

from google.colab import drive
drive.mount('/content/drive')

After an authorisation check, you will be able to interact with your drive content either from the file browser side panel (easier) or using command-line utilities.

3. Clone the GitHub Repository on your Drive

I suggest to create a folder inside your drive. For example, call it ca.webinars. Then, in any colab notebook cell, type the following commands

%cd '/content/drive/My Drive/ca.webinars'

and then clone the following repository:

!git clone https://github.com/cloudacademy/ca-pandas-webinars.git

4. Open the template .ipynb file from your drive

Now, you have to navigate inside the Google Drive folder where the repo has been cloned. Once there, you just need to open, say, the file '[PANDAS] Part 1 - How to Filter your Data Source.ipynb' with Google Colab. And that's it! 😄

5. Let's get our hands dirty

Just run the following snippet to put the raw data into a pandas dataframe:

import pandas as pd
df = pd.read_csv('/content/drive/My Drive/<PATH_TO_FILE>/<FILENAME>.csv')

Are you ready? Let us get started!