├── .github ├── datasource_checker.py ├── pull_request_template.md └── workflows │ ├── Docker_build_check.yml │ ├── ci.yml │ └── datasources.yml ├── .gitignore ├── BUILD.md ├── LICENSE ├── README.md ├── blog ├── 2020-08-10-combinations.md ├── 2020-08-11-introducinguk.md ├── 2020-08-25-newozseries.md ├── 2020-10-08-newhomepage.md ├── 2020-10-16-gitdeveloperstatus.md ├── 2020-10-20-newukseries.md ├── 2020-11-05-isf2020.md ├── 2021-09-24-newmodels.md ├── 2021-10-15-scores.md ├── 2021-10-29-horizons.md ├── 2022-06-08-worldbank.md └── 2022-10-08-version1.md ├── create_local_env.sh ├── dash ├── Dockerfile ├── app.py ├── assets │ ├── USYD_coa_reversed.png │ ├── USYD_logo.png │ ├── analytics.js │ ├── favicon.ico │ ├── poweredby │ │ ├── docker.png │ │ ├── gunicorn.png │ │ ├── nginx.png │ │ ├── numpy.png │ │ ├── pandas.png │ │ ├── plotly.png │ │ ├── python.png │ │ ├── r.png │ │ ├── rforecast.png │ │ ├── rpy2.png │ │ ├── scikitlearn.png │ │ └── traefik.png │ └── profiles │ │ ├── AnastasiosPanagiotelis.jpeg │ │ ├── AndreyVasnev.png │ │ ├── AndyWang.png │ │ ├── ArdiMirzaei.jpg │ │ ├── ChaoWang.jpeg │ │ ├── DavidHouseman.jpeg │ │ ├── PabloMonteroManso.png │ │ ├── RichardGerlach.jpeg │ │ ├── RobertJames.jpg │ │ └── StephenTierney.jpeg ├── common.py ├── pages │ ├── about.py │ ├── blog │ │ ├── blog.py │ │ └── post.py │ ├── home.py │ ├── leaderboard.py │ ├── methodology.py │ ├── search.py │ └── series.py ├── requirements.txt ├── series_test.py ├── startup.sh ├── static_files │ ├── poweredby.json │ └── profiles.json └── util.py ├── data ├── CountriesList.csv ├── downloads │ └── .gitignore ├── forecasts │ └── .gitignore └── thumbnails │ └── .gitignore ├── docker-compose.yml ├── nginx └── nginx.conf ├── pre_push.sh ├── pyproject.toml ├── requirements_build.txt ├── setup.cfg ├── shared_config ├── .gitignore ├── data_sources.json └── search_a_series.json ├── traefik └── traefik.toml ├── update.sh └── updater ├── Dockerfile ├── download.py ├── error_reporting.txt ├── generate_search_details.py ├── generate_thumbnails.py ├── models.py ├── requirements-bin.txt ├── requirements.R ├── requirements.txt ├── run_models.py ├── seasadj.R ├── smooth_package.R ├── update.py ├── update_script.sh ├── updater-cron └── view_pickle_file.py /.github/datasource_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.github/datasource_checker.py -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/Docker_build_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.github/workflows/Docker_build_check.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/datasources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.github/workflows/datasources.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/README.md -------------------------------------------------------------------------------- /blog/2020-08-10-combinations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-08-10-combinations.md -------------------------------------------------------------------------------- /blog/2020-08-11-introducinguk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-08-11-introducinguk.md -------------------------------------------------------------------------------- /blog/2020-08-25-newozseries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-08-25-newozseries.md -------------------------------------------------------------------------------- /blog/2020-10-08-newhomepage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-10-08-newhomepage.md -------------------------------------------------------------------------------- /blog/2020-10-16-gitdeveloperstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-10-16-gitdeveloperstatus.md -------------------------------------------------------------------------------- /blog/2020-10-20-newukseries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-10-20-newukseries.md -------------------------------------------------------------------------------- /blog/2020-11-05-isf2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2020-11-05-isf2020.md -------------------------------------------------------------------------------- /blog/2021-09-24-newmodels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2021-09-24-newmodels.md -------------------------------------------------------------------------------- /blog/2021-10-15-scores.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2021-10-15-scores.md -------------------------------------------------------------------------------- /blog/2021-10-29-horizons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2021-10-29-horizons.md -------------------------------------------------------------------------------- /blog/2022-06-08-worldbank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2022-06-08-worldbank.md -------------------------------------------------------------------------------- /blog/2022-10-08-version1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/blog/2022-10-08-version1.md -------------------------------------------------------------------------------- /create_local_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/create_local_env.sh -------------------------------------------------------------------------------- /dash/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM python:3.9-bullseye 2 | ENV PYTHONUNBUFFERED 1 3 | CMD /dash/startup.sh 4 | -------------------------------------------------------------------------------- /dash/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/app.py -------------------------------------------------------------------------------- /dash/assets/USYD_coa_reversed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/USYD_coa_reversed.png -------------------------------------------------------------------------------- /dash/assets/USYD_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/USYD_logo.png -------------------------------------------------------------------------------- /dash/assets/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/analytics.js -------------------------------------------------------------------------------- /dash/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/favicon.ico -------------------------------------------------------------------------------- /dash/assets/poweredby/docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/docker.png -------------------------------------------------------------------------------- /dash/assets/poweredby/gunicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/gunicorn.png -------------------------------------------------------------------------------- /dash/assets/poweredby/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/nginx.png -------------------------------------------------------------------------------- /dash/assets/poweredby/numpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/numpy.png -------------------------------------------------------------------------------- /dash/assets/poweredby/pandas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/pandas.png -------------------------------------------------------------------------------- /dash/assets/poweredby/plotly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/plotly.png -------------------------------------------------------------------------------- /dash/assets/poweredby/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/python.png -------------------------------------------------------------------------------- /dash/assets/poweredby/r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/r.png -------------------------------------------------------------------------------- /dash/assets/poweredby/rforecast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/rforecast.png -------------------------------------------------------------------------------- /dash/assets/poweredby/rpy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/rpy2.png -------------------------------------------------------------------------------- /dash/assets/poweredby/scikitlearn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/scikitlearn.png -------------------------------------------------------------------------------- /dash/assets/poweredby/traefik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/poweredby/traefik.png -------------------------------------------------------------------------------- /dash/assets/profiles/AnastasiosPanagiotelis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/AnastasiosPanagiotelis.jpeg -------------------------------------------------------------------------------- /dash/assets/profiles/AndreyVasnev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/AndreyVasnev.png -------------------------------------------------------------------------------- /dash/assets/profiles/AndyWang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/AndyWang.png -------------------------------------------------------------------------------- /dash/assets/profiles/ArdiMirzaei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/ArdiMirzaei.jpg -------------------------------------------------------------------------------- /dash/assets/profiles/ChaoWang.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/ChaoWang.jpeg -------------------------------------------------------------------------------- /dash/assets/profiles/DavidHouseman.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/DavidHouseman.jpeg -------------------------------------------------------------------------------- /dash/assets/profiles/PabloMonteroManso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/PabloMonteroManso.png -------------------------------------------------------------------------------- /dash/assets/profiles/RichardGerlach.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/RichardGerlach.jpeg -------------------------------------------------------------------------------- /dash/assets/profiles/RobertJames.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/RobertJames.jpg -------------------------------------------------------------------------------- /dash/assets/profiles/StephenTierney.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/assets/profiles/StephenTierney.jpeg -------------------------------------------------------------------------------- /dash/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/common.py -------------------------------------------------------------------------------- /dash/pages/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/about.py -------------------------------------------------------------------------------- /dash/pages/blog/blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/blog/blog.py -------------------------------------------------------------------------------- /dash/pages/blog/post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/blog/post.py -------------------------------------------------------------------------------- /dash/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/home.py -------------------------------------------------------------------------------- /dash/pages/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/leaderboard.py -------------------------------------------------------------------------------- /dash/pages/methodology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/methodology.py -------------------------------------------------------------------------------- /dash/pages/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/search.py -------------------------------------------------------------------------------- /dash/pages/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/pages/series.py -------------------------------------------------------------------------------- /dash/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/requirements.txt -------------------------------------------------------------------------------- /dash/series_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/series_test.py -------------------------------------------------------------------------------- /dash/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/startup.sh -------------------------------------------------------------------------------- /dash/static_files/poweredby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/static_files/poweredby.json -------------------------------------------------------------------------------- /dash/static_files/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/static_files/profiles.json -------------------------------------------------------------------------------- /dash/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/dash/util.py -------------------------------------------------------------------------------- /data/CountriesList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/data/CountriesList.csv -------------------------------------------------------------------------------- /data/downloads/.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl 2 | -------------------------------------------------------------------------------- /data/forecasts/.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl -------------------------------------------------------------------------------- /data/thumbnails/.gitignore: -------------------------------------------------------------------------------- 1 | *.pkl 2 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /pre_push.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | black --config pyproject.toml ./ -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements_build.txt: -------------------------------------------------------------------------------- 1 | black -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/setup.cfg -------------------------------------------------------------------------------- /shared_config/.gitignore: -------------------------------------------------------------------------------- 1 | fred_api_key 2 | -------------------------------------------------------------------------------- /shared_config/data_sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/shared_config/data_sources.json -------------------------------------------------------------------------------- /shared_config/search_a_series.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/shared_config/search_a_series.json -------------------------------------------------------------------------------- /traefik/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/traefik/traefik.toml -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/update.sh -------------------------------------------------------------------------------- /updater/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/Dockerfile -------------------------------------------------------------------------------- /updater/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/download.py -------------------------------------------------------------------------------- /updater/error_reporting.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2022-06-08 10:29:50.576699 -------------------------------------------------------------------------------- /updater/generate_search_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/generate_search_details.py -------------------------------------------------------------------------------- /updater/generate_thumbnails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/generate_thumbnails.py -------------------------------------------------------------------------------- /updater/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/models.py -------------------------------------------------------------------------------- /updater/requirements-bin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/requirements-bin.txt -------------------------------------------------------------------------------- /updater/requirements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/requirements.R -------------------------------------------------------------------------------- /updater/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/requirements.txt -------------------------------------------------------------------------------- /updater/run_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/run_models.py -------------------------------------------------------------------------------- /updater/seasadj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/seasadj.R -------------------------------------------------------------------------------- /updater/smooth_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/smooth_package.R -------------------------------------------------------------------------------- /updater/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/update.py -------------------------------------------------------------------------------- /updater/update_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/update_script.sh -------------------------------------------------------------------------------- /updater/updater-cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/updater-cron -------------------------------------------------------------------------------- /updater/view_pickle_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forecastlab/forecast_dash/HEAD/updater/view_pickle_file.py --------------------------------------------------------------------------------