Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 988 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 988 Bytes

EDA on House Sales in King County, USA

The dataset can be aquired on kaggle.

Summary:

This repository contains a small explorative data analyses on house sales in King County (USA). The goal was to find at least 3 different insights on the overall dataset. A fictional stakeholder was used to focus the EDA. Based on the insights a few recommendation should be given to the stakeholder.

The stakeholder is a Buyer, who looks for an object in the real estate industry of King County (USA). The requirements are:

  • lively and central neighborhood
  • middle price range
  • right timing (within a year)

Requirements & Setup

  • pyenv
  • python==3.9.8

All packages are listed in the requirements.txt file.

In order to install the environment you can use the following commands:

pyenv local 3.9.8
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt