├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── data ├── data_raw.csv ├── data_tf.csv ├── get_data.r ├── meta_data.csv └── prepare_data.r ├── html_output ├── model_arma.html ├── model_bvar.html ├── model_deepvar.html ├── model_dfm.html ├── model_dt.html ├── model_elasticnet.html ├── model_gb.html ├── model_lasso.html ├── model_lstm.html ├── model_lstm_r.html ├── model_midas.html ├── model_midasml.html ├── model_mlp.html ├── model_ols.html ├── model_rf.html ├── model_ridge.html ├── model_var.html └── model_xgboost.html ├── images ├── app1.png ├── app10.png ├── app11.png ├── app12.png ├── app13.png ├── app14.png ├── app15.png ├── app16.png ├── app17.png ├── app2.png ├── app3.png ├── app4.png ├── app5.png ├── app6.png ├── app7.png ├── app8.png ├── app9.png ├── data_example.png ├── fig1.png └── fig2.png └── methodologies ├── model_arma.ipynb ├── model_bvar.ipynb ├── model_deepvar.ipynb ├── model_dfm.ipynb ├── model_dt.ipynb ├── model_elasticnet.ipynb ├── model_gb.ipynb ├── model_lasso.ipynb ├── model_lstm.ipynb ├── model_lstm_r.ipynb ├── model_midas.ipynb ├── model_midasml.ipynb ├── model_mlp.ipynb ├── model_ols.ipynb ├── model_rf.ipynb ├── model_ridge.ipynb ├── model_var.ipynb └── model_xgboost.ipynb /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/README.md -------------------------------------------------------------------------------- /data/data_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/data/data_raw.csv -------------------------------------------------------------------------------- /data/data_tf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/data/data_tf.csv -------------------------------------------------------------------------------- /data/get_data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/data/get_data.r -------------------------------------------------------------------------------- /data/meta_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/data/meta_data.csv -------------------------------------------------------------------------------- /data/prepare_data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/data/prepare_data.r -------------------------------------------------------------------------------- /html_output/model_arma.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_arma.html -------------------------------------------------------------------------------- /html_output/model_bvar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_bvar.html -------------------------------------------------------------------------------- /html_output/model_deepvar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_deepvar.html -------------------------------------------------------------------------------- /html_output/model_dfm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_dfm.html -------------------------------------------------------------------------------- /html_output/model_dt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_dt.html -------------------------------------------------------------------------------- /html_output/model_elasticnet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_elasticnet.html -------------------------------------------------------------------------------- /html_output/model_gb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_gb.html -------------------------------------------------------------------------------- /html_output/model_lasso.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_lasso.html -------------------------------------------------------------------------------- /html_output/model_lstm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_lstm.html -------------------------------------------------------------------------------- /html_output/model_lstm_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_lstm_r.html -------------------------------------------------------------------------------- /html_output/model_midas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_midas.html -------------------------------------------------------------------------------- /html_output/model_midasml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_midasml.html -------------------------------------------------------------------------------- /html_output/model_mlp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_mlp.html -------------------------------------------------------------------------------- /html_output/model_ols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_ols.html -------------------------------------------------------------------------------- /html_output/model_rf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_rf.html -------------------------------------------------------------------------------- /html_output/model_ridge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_ridge.html -------------------------------------------------------------------------------- /html_output/model_var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_var.html -------------------------------------------------------------------------------- /html_output/model_xgboost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/html_output/model_xgboost.html -------------------------------------------------------------------------------- /images/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app1.png -------------------------------------------------------------------------------- /images/app10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app10.png -------------------------------------------------------------------------------- /images/app11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app11.png -------------------------------------------------------------------------------- /images/app12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app12.png -------------------------------------------------------------------------------- /images/app13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app13.png -------------------------------------------------------------------------------- /images/app14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app14.png -------------------------------------------------------------------------------- /images/app15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app15.png -------------------------------------------------------------------------------- /images/app16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app16.png -------------------------------------------------------------------------------- /images/app17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app17.png -------------------------------------------------------------------------------- /images/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app2.png -------------------------------------------------------------------------------- /images/app3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app3.png -------------------------------------------------------------------------------- /images/app4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app4.png -------------------------------------------------------------------------------- /images/app5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app5.png -------------------------------------------------------------------------------- /images/app6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app6.png -------------------------------------------------------------------------------- /images/app7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app7.png -------------------------------------------------------------------------------- /images/app8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app8.png -------------------------------------------------------------------------------- /images/app9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/app9.png -------------------------------------------------------------------------------- /images/data_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/data_example.png -------------------------------------------------------------------------------- /images/fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/fig1.png -------------------------------------------------------------------------------- /images/fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/images/fig2.png -------------------------------------------------------------------------------- /methodologies/model_arma.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_arma.ipynb -------------------------------------------------------------------------------- /methodologies/model_bvar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_bvar.ipynb -------------------------------------------------------------------------------- /methodologies/model_deepvar.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_deepvar.ipynb -------------------------------------------------------------------------------- /methodologies/model_dfm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_dfm.ipynb -------------------------------------------------------------------------------- /methodologies/model_dt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_dt.ipynb -------------------------------------------------------------------------------- /methodologies/model_elasticnet.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_elasticnet.ipynb -------------------------------------------------------------------------------- /methodologies/model_gb.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_gb.ipynb -------------------------------------------------------------------------------- /methodologies/model_lasso.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_lasso.ipynb -------------------------------------------------------------------------------- /methodologies/model_lstm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_lstm.ipynb -------------------------------------------------------------------------------- /methodologies/model_lstm_r.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_lstm_r.ipynb -------------------------------------------------------------------------------- /methodologies/model_midas.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_midas.ipynb -------------------------------------------------------------------------------- /methodologies/model_midasml.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_midasml.ipynb -------------------------------------------------------------------------------- /methodologies/model_mlp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_mlp.ipynb -------------------------------------------------------------------------------- /methodologies/model_ols.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_ols.ipynb -------------------------------------------------------------------------------- /methodologies/model_rf.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_rf.ipynb -------------------------------------------------------------------------------- /methodologies/model_ridge.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_ridge.ipynb -------------------------------------------------------------------------------- /methodologies/model_var.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_var.ipynb -------------------------------------------------------------------------------- /methodologies/model_xgboost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcasting_benchmark/HEAD/methodologies/model_xgboost.ipynb --------------------------------------------------------------------------------