This repository contains the data, code, and documentation for my Bachelor's thesis project analyzing wealth inequality in Europe.
This project investigates the connection between wealth inequality and housing prices in Europe. It focuses on the short run reactions of wealth distribution to changes in housing prices, following a similar approach by Kuhn et al. (2023) for the US. It uses the novel experimantel Distributional Wealth Accounts (DWA) from the ECB.
.
├── data/ # All input datasets
│ ├── raw/ # Original files (Excel, CSV)
│ ├── processed/ # Cleaned and structured datasets
│ └── models/ # Model input/output files
├── src/ # Core code base
│ ├── 01_preparation/ # Data cleaning and preparation files
│ ├── 02_analysis/ # Econometric models and simulations
│ ├── 03_reporting/ # Plots, tables, robustness checks
│ └── _archive/ # Deprecated or exploratory code
├── output/ # Exported results
├── docs/ # Methodological references
├── renv/ # R package environment
├── renv.lock # Reproducible package snapshot
├── README.md # This file
├── inequality.Rproj # RStudio project file
- Open inequality.Rproj in RStudio.
- Run renv::restore() to install the required packages.
- Execute scripts in src/ in order:
- 01_preparation/
- 02_analysis/
- 03_reporting/
Managed via renv. See renv.lock for exact package versions.
File naming and folder structures follow reproducible research practices. Outputs are not version-controlled; regenerate using the scripts if needed.