Exploring Airbnb Market Trends
Welcome to New York City, one of the most-visited cities in the world. There are many Airbnb listings in New York City to meet the high demand for temporary lodging for travelers, which can be anywhere between a few nights to many months. In this project, we will take a closer look at the New York Airbnb market by combining data from multiple file types like .csv, .tsv, and .xlsx.
Recall that CSV, TSV, and Excel files are three common formats for storing data. Three files containing data on 2019 Airbnb listings are available to you:
data/airbnb_price.csv This is a CSV file containing data on Airbnb listing prices and locations.
listing_id: unique identifier of listingprice: nightly listing price in USDnbhood_full: name of borough and neighborhood where listing is located
data/airbnb_room_type.xlsx This is an Excel file containing data on Airbnb listing descriptions and room types.
listing_id: unique identifier of listingdescription: listing descriptionroom_type: Airbnb has three types of rooms: shared rooms, private rooms, and entire homes/apartments
data/airbnb_last_review.tsv This is a TSV file containing data on Airbnb host names and review dates.
listing_id: unique identifier of listinghost_name: name of listing hostlast_review: date when the listing was last reviewed
Load data
# Import necessary packages
import pandas as pd
import numpy as npImport CSV
# Import CSV file for prices
price = pd.read_csv('data/airbnb_price.csv')
print(price.head())Import TSV
# Import TSV file for reviews
review = pd.read_csv('data/airbnb_last_review.tsv', sep='\t')
print(review.head())Import XLS
# Import XLS file for room types
xls_data = pd.ExcelFile('data/airbnb_room_type.xlsx')
room = xls_data.parse(0)
print(room.head())Join the three files
# Merging under one file
abnb = pd.merge(pd.merge(price, review, on = 'listing_id'), room, on = 'listing_id')
# Checking the data
print(abnb.info())Clean data
From our last observation, we can tell that this data some cleaning before getting analyzed.
I would suggest:
- changing 'price' from object to integer and keeping only the numerical value
- cleaning 'host_name' although not mandatory
- changing 'last_review' from object to date
- cleaning 'room_type' and categorizing it
Converting to integer