├── .gitignore ├── LICENSE ├── README.md ├── SETUP.md ├── environment.yml ├── images ├── cluster_tree.png ├── map-digital-design-in-architecture.pdf ├── map-digital-design-in-architecture.png ├── map-raw.png ├── method │ ├── authors-list.png │ ├── wos_export_formats.png │ ├── wos_export_options.png │ ├── wos_results.png │ └── wos_search.png └── setup │ ├── create_environment.png │ ├── open_terminal.png │ └── start_jupyter.png └── research-map-digital-design.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/SETUP.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/environment.yml -------------------------------------------------------------------------------- /images/cluster_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/cluster_tree.png -------------------------------------------------------------------------------- /images/map-digital-design-in-architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/map-digital-design-in-architecture.pdf -------------------------------------------------------------------------------- /images/map-digital-design-in-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/map-digital-design-in-architecture.png -------------------------------------------------------------------------------- /images/map-raw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/map-raw.png -------------------------------------------------------------------------------- /images/method/authors-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/method/authors-list.png -------------------------------------------------------------------------------- /images/method/wos_export_formats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/method/wos_export_formats.png -------------------------------------------------------------------------------- /images/method/wos_export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/method/wos_export_options.png -------------------------------------------------------------------------------- /images/method/wos_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/method/wos_results.png -------------------------------------------------------------------------------- /images/method/wos_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/method/wos_search.png -------------------------------------------------------------------------------- /images/setup/create_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/setup/create_environment.png -------------------------------------------------------------------------------- /images/setup/open_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/setup/open_terminal.png -------------------------------------------------------------------------------- /images/setup/start_jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/images/setup/start_jupyter.png -------------------------------------------------------------------------------- /research-map-digital-design.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonsavov/research-maps/HEAD/research-map-digital-design.ipynb --------------------------------------------------------------------------------