This repository contains the code and analysis for predicting house prices using the Ames Housing Dataset.
The goal is twofold:
- To implement and apply statistical tests to better understand the data and validate assumptions prior to modeling.
- To model and predict sale prices of houses using machine learning techniques.
Full Report: A detailed write-up of this study is available in report.pdf.
- Numerical features are more significant predictors of SalePrice compared to categorical features
- Applying a Box-Cox transformation on SalePrice will improve the performance of predictive models
- Higher-priced homes tend to have lower predictive accuracy
- Python 3.x
- NumPy
- Pandas
- statsmodels
- scikit-learn
- matplotlib
- seaborn
You can install the dependencies using:
pip install pandas numpy matplotlib seaborn scikit-learn statsmodelsYou can run the analysis in Jupyter:
jupyter notebook main.ipynb

