Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Course Recap
2. Airbnb dataset
Final challenge
Summary

Instruction

In this section, you will have to analyze a real dataset made available by Airbnb, an online marketplace for people who want to rent their homes or single rooms.

The dataset will contain around one thousand Airbnb offers from Auckland, New Zealand. Use the button on the right to take a look at the dataset.

The dataset comes from the following website. It has been published under a Public Domain Dedication license.

Exercise

First things first!

  1. Import pandas and matplotlib.pyplot.
  2. Read the airbnb.csv file into the airbnb_dataset variable.
  3. Show the first five rows of airbnb_dataset.

Stuck? Here's a hint!

For step 1, use:

import pandas as pd
import matplotlib.pyplot as plt

For step 2, use read_csv() with the sep=';' option. For step 3, use head().