├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── add_keywords.r ├── add_locations.r ├── aggregate_synonyms.r ├── check_functions.r ├── compute_doi.r ├── compute_score.r ├── data.r ├── database_functions.r ├── download_control.r ├── download_object.r ├── export_data.r ├── globals.r ├── helper_functions.r ├── initialize_python.r ├── remove_data.r └── zzz.r ├── README.md ├── codecov.yml ├── cran-comments.md ├── data-raw ├── generate_data.r ├── stat_control.rds ├── stat_doi.rds ├── stat_object.rds └── stat_score.rds ├── data ├── countries.rda ├── countries_wdi.rda ├── example_control.rda ├── example_doi.rda ├── example_keywords.rda ├── example_object.rda ├── example_score.rda ├── example_time.rda └── us_states.rda ├── dev └── submission_checks.rmd ├── globaltrends_Vignette.pdf ├── inst ├── CITATION └── python │ └── query_gtrends.py ├── man ├── add_keyword.Rd ├── add_locations.Rd ├── add_synonym.Rd ├── aggregate_synonyms.Rd ├── batch_keywords.Rd ├── batch_time.Rd ├── compute_doi.Rd ├── compute_score.Rd ├── countries.Rd ├── countries_wdi.Rd ├── data_control.Rd ├── data_doi.Rd ├── data_object.Rd ├── data_score.Rd ├── disconnect_db.Rd ├── download_control.Rd ├── download_object.Rd ├── export_data.Rd ├── gt.env.Rd ├── initialize_db.Rd ├── initialize_python.Rd ├── remove_data.Rd ├── start_db.Rd └── us_states.Rd ├── tests ├── test_functions.r ├── testthat.r └── testthat │ ├── test-computations.R │ ├── test-db_functions.R │ ├── test-downloads.R │ ├── test-export.R │ ├── test-keywords.R │ ├── test-locations.R │ ├── test-python.R │ └── test-synonyms.R ├── useR 2021 ├── globaltrends_useR.nb.html └── useR_globaltrends.pdf └── vignettes ├── globaltrends.Rmd ├── globaltrends.html ├── google_method.r ├── hex-globaltrends.png ├── plot001.png ├── plot002.png ├── plot003.png ├── plot004.png ├── plot005.png ├── plot006.png ├── plot007.png ├── plot008.png ├── plot009.png ├── plot010.png ├── plot011.png ├── plot012.png ├── plot013.png ├── plot014.png ├── plot015.png ├── plot016.png ├── plot017.png ├── plot_sample01.png ├── plot_sample02.png ├── plot_sample03.png ├── plot_sample04.png ├── screenshot001.png └── vignette_draft.docx /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .Rhistory 3 | revdep/ 4 | dev/submission_checks.nb.html 5 | -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Harald Puhr 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/add_keywords.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/add_keywords.r -------------------------------------------------------------------------------- /R/add_locations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/add_locations.r -------------------------------------------------------------------------------- /R/aggregate_synonyms.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/aggregate_synonyms.r -------------------------------------------------------------------------------- /R/check_functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/check_functions.r -------------------------------------------------------------------------------- /R/compute_doi.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/compute_doi.r -------------------------------------------------------------------------------- /R/compute_score.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/compute_score.r -------------------------------------------------------------------------------- /R/data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/data.r -------------------------------------------------------------------------------- /R/database_functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/database_functions.r -------------------------------------------------------------------------------- /R/download_control.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/download_control.r -------------------------------------------------------------------------------- /R/download_object.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/download_object.r -------------------------------------------------------------------------------- /R/export_data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/export_data.r -------------------------------------------------------------------------------- /R/globals.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/globals.r -------------------------------------------------------------------------------- /R/helper_functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/helper_functions.r -------------------------------------------------------------------------------- /R/initialize_python.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/initialize_python.r -------------------------------------------------------------------------------- /R/remove_data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/remove_data.r -------------------------------------------------------------------------------- /R/zzz.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/R/zzz.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/generate_data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data-raw/generate_data.r -------------------------------------------------------------------------------- /data-raw/stat_control.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data-raw/stat_control.rds -------------------------------------------------------------------------------- /data-raw/stat_doi.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data-raw/stat_doi.rds -------------------------------------------------------------------------------- /data-raw/stat_object.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data-raw/stat_object.rds -------------------------------------------------------------------------------- /data-raw/stat_score.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data-raw/stat_score.rds -------------------------------------------------------------------------------- /data/countries.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/countries.rda -------------------------------------------------------------------------------- /data/countries_wdi.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/countries_wdi.rda -------------------------------------------------------------------------------- /data/example_control.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_control.rda -------------------------------------------------------------------------------- /data/example_doi.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_doi.rda -------------------------------------------------------------------------------- /data/example_keywords.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_keywords.rda -------------------------------------------------------------------------------- /data/example_object.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_object.rda -------------------------------------------------------------------------------- /data/example_score.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_score.rda -------------------------------------------------------------------------------- /data/example_time.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/example_time.rda -------------------------------------------------------------------------------- /data/us_states.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/data/us_states.rda -------------------------------------------------------------------------------- /dev/submission_checks.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/dev/submission_checks.rmd -------------------------------------------------------------------------------- /globaltrends_Vignette.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/globaltrends_Vignette.pdf -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/python/query_gtrends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/inst/python/query_gtrends.py -------------------------------------------------------------------------------- /man/add_keyword.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/add_keyword.Rd -------------------------------------------------------------------------------- /man/add_locations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/add_locations.Rd -------------------------------------------------------------------------------- /man/add_synonym.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/add_synonym.Rd -------------------------------------------------------------------------------- /man/aggregate_synonyms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/aggregate_synonyms.Rd -------------------------------------------------------------------------------- /man/batch_keywords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/batch_keywords.Rd -------------------------------------------------------------------------------- /man/batch_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/batch_time.Rd -------------------------------------------------------------------------------- /man/compute_doi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/compute_doi.Rd -------------------------------------------------------------------------------- /man/compute_score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/compute_score.Rd -------------------------------------------------------------------------------- /man/countries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/countries.Rd -------------------------------------------------------------------------------- /man/countries_wdi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/countries_wdi.Rd -------------------------------------------------------------------------------- /man/data_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/data_control.Rd -------------------------------------------------------------------------------- /man/data_doi.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/data_doi.Rd -------------------------------------------------------------------------------- /man/data_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/data_object.Rd -------------------------------------------------------------------------------- /man/data_score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/data_score.Rd -------------------------------------------------------------------------------- /man/disconnect_db.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/disconnect_db.Rd -------------------------------------------------------------------------------- /man/download_control.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/download_control.Rd -------------------------------------------------------------------------------- /man/download_object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/download_object.Rd -------------------------------------------------------------------------------- /man/export_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/export_data.Rd -------------------------------------------------------------------------------- /man/gt.env.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/gt.env.Rd -------------------------------------------------------------------------------- /man/initialize_db.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/initialize_db.Rd -------------------------------------------------------------------------------- /man/initialize_python.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/initialize_python.Rd -------------------------------------------------------------------------------- /man/remove_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/remove_data.Rd -------------------------------------------------------------------------------- /man/start_db.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/start_db.Rd -------------------------------------------------------------------------------- /man/us_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/man/us_states.Rd -------------------------------------------------------------------------------- /tests/test_functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/test_functions.r -------------------------------------------------------------------------------- /tests/testthat.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat.r -------------------------------------------------------------------------------- /tests/testthat/test-computations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-computations.R -------------------------------------------------------------------------------- /tests/testthat/test-db_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-db_functions.R -------------------------------------------------------------------------------- /tests/testthat/test-downloads.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-downloads.R -------------------------------------------------------------------------------- /tests/testthat/test-export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-export.R -------------------------------------------------------------------------------- /tests/testthat/test-keywords.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-keywords.R -------------------------------------------------------------------------------- /tests/testthat/test-locations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-locations.R -------------------------------------------------------------------------------- /tests/testthat/test-python.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-python.R -------------------------------------------------------------------------------- /tests/testthat/test-synonyms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/tests/testthat/test-synonyms.R -------------------------------------------------------------------------------- /useR 2021/globaltrends_useR.nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/useR 2021/globaltrends_useR.nb.html -------------------------------------------------------------------------------- /useR 2021/useR_globaltrends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/useR 2021/useR_globaltrends.pdf -------------------------------------------------------------------------------- /vignettes/globaltrends.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/globaltrends.Rmd -------------------------------------------------------------------------------- /vignettes/globaltrends.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/globaltrends.html -------------------------------------------------------------------------------- /vignettes/google_method.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/google_method.r -------------------------------------------------------------------------------- /vignettes/hex-globaltrends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/hex-globaltrends.png -------------------------------------------------------------------------------- /vignettes/plot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot001.png -------------------------------------------------------------------------------- /vignettes/plot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot002.png -------------------------------------------------------------------------------- /vignettes/plot003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot003.png -------------------------------------------------------------------------------- /vignettes/plot004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot004.png -------------------------------------------------------------------------------- /vignettes/plot005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot005.png -------------------------------------------------------------------------------- /vignettes/plot006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot006.png -------------------------------------------------------------------------------- /vignettes/plot007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot007.png -------------------------------------------------------------------------------- /vignettes/plot008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot008.png -------------------------------------------------------------------------------- /vignettes/plot009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot009.png -------------------------------------------------------------------------------- /vignettes/plot010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot010.png -------------------------------------------------------------------------------- /vignettes/plot011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot011.png -------------------------------------------------------------------------------- /vignettes/plot012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot012.png -------------------------------------------------------------------------------- /vignettes/plot013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot013.png -------------------------------------------------------------------------------- /vignettes/plot014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot014.png -------------------------------------------------------------------------------- /vignettes/plot015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot015.png -------------------------------------------------------------------------------- /vignettes/plot016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot016.png -------------------------------------------------------------------------------- /vignettes/plot017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot017.png -------------------------------------------------------------------------------- /vignettes/plot_sample01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot_sample01.png -------------------------------------------------------------------------------- /vignettes/plot_sample02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot_sample02.png -------------------------------------------------------------------------------- /vignettes/plot_sample03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot_sample03.png -------------------------------------------------------------------------------- /vignettes/plot_sample04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/plot_sample04.png -------------------------------------------------------------------------------- /vignettes/screenshot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/screenshot001.png -------------------------------------------------------------------------------- /vignettes/vignette_draft.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ha-pu/globaltrends/HEAD/vignettes/vignette_draft.docx --------------------------------------------------------------------------------