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, you will take a closer look at the New York Airbnb market by combining data from multiple file types like .csv, .tsv, and .xlsx (Excel files).
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
# We've loaded the necessary packages for you in the first cell. Please feel free to add as many cells as you like!
suppressMessages(library(dplyr)) # This line is required to check your answer correctly
options(readr.show_types = FALSE) # This line is required to check your answer correctly
library(readr)
library(readxl)
library(stringr)
# Begin coding here ...
# Put data into dataframes
price <- read_csv( "data/airbnb_price.csv" )
room_type <- read_excel( "data/airbnb_room_type.xlsx" )
last_review <- read_tsv( "data/airbnb_last_review.tsv" )
# Join data
air_bnb <- last_review |>
full_join( price, by = c( "listing_id" ) ) |>
full_join( room_type, by = c( "listing_id" ) )
str( air_bnb )
head( air_bnb )
#View( air_bnb)
# Mutate cols
air_bnb_mutated <-
air_bnb |>
mutate( last_review_date = as.Date( last_review, format = "%B %d %Y" ),
price = sub( " dollars", "", price ),
price = as.numeric( price ),
room_type = str_to_lower( room_type ) )
str( air_bnb_mutated )
head( air_bnb_mutated )
# Summarize cols
# Review Dates
review_dates <-
air_bnb_mutated |>
summarize( first_reviewed = min( last_review_date ),
last_reviewed = max( last_review_date ) )
str( review_dates )
head( review_dates )
# Number Private Rooms
private_rooms <- air_bnb_mutated |>
mutate( room_type = str_to_lower( room_type ) ) |>
count( room_type ) |>
filter( room_type == "private room" )
(nb_private_rooms <- private_rooms$n)
# Mean Price
avg_price <- air_bnb_mutated |>
summarize( avg_price = mean( price ) ) |>
mutate( avg_price = round( avg_price, 2 ) ) |>
as.numeric()
# Finish Building Tibble
review_dates$nb_private_rooms = nb_private_rooms
review_dates$avg_price = avg_price
print( review_dates )