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!
- Import
pandasandmatplotlib.pyplot. - Read the
airbnb.csvfile into theairbnb_datasetvariable. - 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().



