Description
├── data
│ └── output_data
│ ├── Deterministics
│ ├── impulse_responses
│ ├── naive_interventions
│ ├── sensitivity_analysis
│ ├── target_interventions
│ └── time_series
│
├── environment.yml <- The environment file for reproducing the analysis environment.
├── README.md <- The top-level README for developers using this project.
├── src <- Source code for use in this project.
│ ├── l00_package
│ │ ├── __init__.py <- Makes l00_package a Python module
│ │ ├── l00_parameters
│ │ ├── l01_grids
│ │ ├── l03_model
│ │ └── l04_auxiliaries
│ ├── l01_simulate_data
│ │ ├── __init__.py <- Makes l01_simulate_data a Python module
│ │ ├── Deterministics
│ │ ├── ImpulseResponses
│ │ ├── Interventions
│ │ ├── sensitivity
│ │ └── Time Series
│ ├── l02_analysis <- Scripts for data analysis and visualization
│ │ ├── effectsize.py
│ │ ├── visualize_irf.py
│ │ ├── visualize_naive_interventions.py
│ │ └── visualize_target_interventions.py
│ └── __init__.py <- Makes src a Python module
│
└── .gitkeep <- Ensures the directory is tracked by git