You will need the standard data science libraries found in the Anaconda distribution of Python. The code should run with no issues using Python versions 3.*.
You will also want to download nltk - directions for this can be found in the text processing portion of the workbook.
For this project, I was interestested in analyzing data from AirBnB homes located in Seattle and Boston. Specifically, I looked at the following questions:
- How much do people charge to rent their homes (on average, minimum, maximum)? How does this compare from Boston to Seattle?
- How many days a year do homeowners make their homes available to rent? How does this compare from Boston to Seattle?
- Are there seasonality components or price spiking components for how hosts set their home prices? How does this compare from Boston to Seattle?
- How many reviews do homes tend to get? How does this compare from Boston to Seattle?
- What are the most common words used to describe a listing? Are the same words used for Seattle and Boston homes?
The following are the files available in this repository:
-
AirBnB_Project_1_Analysis.ipynb
- a notebook of the analysis performed following the CRISP-DM process -
calendar.csv
andcalendar_boston.csv
- csvs containing home_id, date, availability, and price for each home -
listings.csv
andlistings_boston.csv
- these were not used for this particular analysis, but they were available from the original kaggle link -
reviews.csv
andreviews_boston.csv
- csvs containing the home_id, date of review, reviewer_id, reviewer_name, and reviewer comments for the reviewed stays.
It is worth noting here that the reviews and calendar files did not have overlapping dates, and there were no numeric values associated with reviews.
The main findings of the code can be found at the blog post available here.
Must give credit to AirBnB and Kaggle for the data. You can find the Licensing for the data and other descriptive information for the Boston data on Kaggle and for the Seattle data.