Open the Template
To help you with your Data Science journey I'll provide you with starter notebook which already has some of the sections and challenges laid out. Download the .zip file from this lesson's resources, unzip it, and upload it to Google Drive. There you can open the file as a Colab Notebook.
Import the Data
In this lesson, I've also included a QueryResults.csv file with the Stack Overflow data that we'll be using. Download this .csv and add it to your notebook.
For the next steps, let's review the data exploration that we've done yesterday:
Read the .csv file and store it in a Pandas DataFrame called df
. Have a look at the read_csv() documentation and try to provide these column names: ['DATE', 'TAG', 'POSTS']
Look at the first and last 5 rows of the DataFrame.
How many rows and how many columns does it have?
Count the number of entries in each column.