├── 01_get_fred_data.R ├── 02_random_walk_oos_y.R ├── 03_call_model.R ├── 04_eval_results.R ├── README.md └── functions ├── functions.R └── rolling_window.R /01_get_fred_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/01_get_fred_data.R -------------------------------------------------------------------------------- /02_random_walk_oos_y.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/02_random_walk_oos_y.R -------------------------------------------------------------------------------- /03_call_model.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/03_call_model.R -------------------------------------------------------------------------------- /04_eval_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/04_eval_results.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ForecastingInflation 2 | -------------------------------------------------------------------------------- /functions/functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/functions/functions.R -------------------------------------------------------------------------------- /functions/rolling_window.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabrielrvsc/ForecastingInflation/HEAD/functions/rolling_window.R --------------------------------------------------------------------------------