├── .gitignore ├── 01-basics.ipynb ├── 02-advanced.ipynb ├── 03-prepare-VOSviewer-term-map.ipynb ├── binder └── environment.yml ├── data-files ├── vosviewer │ ├── doc-term.txt │ ├── terms.txt │ ├── vosviewer_map.txt │ └── vosviewer_network.txt └── wos │ └── tab-delimited │ ├── savedrecs_0001_0500.txt │ ├── savedrecs_0501_1000.txt │ ├── savedrecs_1001_1500.txt │ ├── savedrecs_1501_2000.txt │ └── savedrecs_2001_2338.txt ├── local └── environment.yml └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/.gitignore -------------------------------------------------------------------------------- /01-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/01-basics.ipynb -------------------------------------------------------------------------------- /02-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/02-advanced.ipynb -------------------------------------------------------------------------------- /03-prepare-VOSviewer-term-map.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/03-prepare-VOSviewer-term-map.ipynb -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /data-files/vosviewer/doc-term.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/vosviewer/doc-term.txt -------------------------------------------------------------------------------- /data-files/vosviewer/terms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/vosviewer/terms.txt -------------------------------------------------------------------------------- /data-files/vosviewer/vosviewer_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/vosviewer/vosviewer_map.txt -------------------------------------------------------------------------------- /data-files/vosviewer/vosviewer_network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/vosviewer/vosviewer_network.txt -------------------------------------------------------------------------------- /data-files/wos/tab-delimited/savedrecs_0001_0500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/wos/tab-delimited/savedrecs_0001_0500.txt -------------------------------------------------------------------------------- /data-files/wos/tab-delimited/savedrecs_0501_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/wos/tab-delimited/savedrecs_0501_1000.txt -------------------------------------------------------------------------------- /data-files/wos/tab-delimited/savedrecs_1001_1500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/wos/tab-delimited/savedrecs_1001_1500.txt -------------------------------------------------------------------------------- /data-files/wos/tab-delimited/savedrecs_1501_2000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/wos/tab-delimited/savedrecs_1501_2000.txt -------------------------------------------------------------------------------- /data-files/wos/tab-delimited/savedrecs_2001_2338.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/data-files/wos/tab-delimited/savedrecs_2001_2338.txt -------------------------------------------------------------------------------- /local/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/local/environment.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CWTSLeiden/CSSS/HEAD/readme.md --------------------------------------------------------------------------------