-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
109,924 additions
and
0 deletions.
There are no files selected for viewing
19,679 changes: 19,679 additions & 0 deletions
19,679
IPBES-TCA-Chap3 > Snowballsearch > Next and last steps _).eml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
], | ||
"settings": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
SHELL = /bin/bash | ||
|
||
# Specify the .qmd files | ||
QMD_FILES = $(wildcard *.qmd) | ||
|
||
# Specify the targets | ||
HTML_FILES = $(QMD_FILES:.qmd=.html) | ||
|
||
# Default target (render all .qmd files) | ||
all: $(HTML_FILES) | ||
|
||
# Rule to render all .qmd files | ||
%.html: %.qmd | ||
quarto render $< | ||
|
||
# Rule to render a specific .qmd file or preview it | ||
snowball: snowball.html | ||
|
||
snowball.html: snowball.qmd | ||
quarto render snowball.qmd | ||
|
||
preview: snowball.html | ||
quarto serve snowball.qmd | ||
|
||
# Rule to clean | ||
## Rule to clean the data directory | ||
clean-data: | ||
rm -rf data/* | ||
|
||
## Rule to clean the figures directory | ||
clean-figures: | ||
rm -rf figures/* | ||
|
||
## Rule to clean the HTML files | ||
clean-html: | ||
rm -f $(HTML_FILES) | ||
|
||
## General clean rule | ||
clean: clean-data clean-figures clean-html | ||
|
||
|
||
############# Help targets ############# | ||
|
||
list_variables: | ||
@echo | ||
@echo "#############################################" | ||
@echo "## Variables ################################" | ||
@$(MAKE) -pn | grep -A1 "^# makefile"| grep -v "^#\|^--" | sort | uniq | ||
@echo "#############################################" | ||
@echo "" | ||
|
||
## from https://stackoverflow.com/a/26339924/632423 | ||
help: | ||
@echo | ||
@echo "#############################################" | ||
@echo "## Make Targets #############################" | ||
@$(MAKE) -pRrq -f $(lastword $(MAKEFILE_LIST)) : 2>/dev/null | awk -v RS= -F: '/^# File/,/^# Finished Make data base/ {if ($$1 !~ "^[#.]") {print $$1}}' | sort | egrep -v -e '^[^[:alnum:]]' -e '^$@$$' | ||
@echo "#############################################" | ||
@echo | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Transformative Change Assessment - Ch 3 - Clusters | ||
|
||
[![DOI](https://zenodo.org/badge/DOI/99.9999/zenodo.9999999.svg)](https://doi.org/99.9999/zenodo.9999999) | ||
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) | ||
[![License: CC BY-SA 4.0](https://img.shields.io/badge/License-CC_BY--SA_4.0-lightgrey.svg)](https://creativecommons.org/licenses/by-sa/4.0/) | ||
|
||
This repository is part of an ongoing IPBES project. | ||
|
||
The authors do not take any responsibility for it's copntent or the correct working of the code. If scripts in here wipe your data, you are on your own. | ||
|
||
Nevertheless, please feel free to browse the code and re-use it at your own risk. | ||
|
||
Once finalised, the final repo will be published on Zenodo | ||
|
||
## Metadata | ||
|
||
- **Project name**:Transformative Change Assessment - Ch 3 - Clusters | ||
- **Assessment**: Transformative Change Assessment | ||
- **Chapter**: Ch 3 | ||
- **Short Name**: `IPBES_TCA_Ch3_Clusters` | ||
Please always include `IPBES_TCA_Ch3_Clusters` in the title of the email to make sure it gets filtered correctly. | ||
- **Status**: waiting for response and way forward | ||
|
||
- **Assigned To**: | ||
- Rainer <[email protected]> <[email protected]> | ||
|
||
- **email to**: | ||
- CLA Rafa | ||
- TSU Data <[email protected]> | ||
|
||
- **email cc**: | ||
- LA | ||
- LA | ||
- LA | ||
- TSU TCA <[email protected]> | ||
- TSU Data <[email protected]> | ||
- TSU Data <[email protected]> | ||
- ... | ||
|
||
- **Github Repo**: [github repository]() | ||
- **Googl Drive Folder**: None | ||
|
||
## Folders | ||
|
||
- **`data`**: data files created during the running of the `snowball.qmd` file and contains cached as well as final data files. | ||
- **`figures`**: figures created during the running of the `snowball.qmd` file in low-res as well as high-res. | ||
- **`input`**: input files for the `snowball.qmd` file | ||
- **`inut/key_papers`**: Key papers for the snowball pilot and a `.csv` file with one column containing the dois | ||
|
||
## Status | ||
|
||
- [ ] Kepypaper were imported into Zotero and the `csv` and `bib` files were exported | ||
- [ ] `snowball.qmd` report file was created and the `R` scripts added | ||
- [ ] `snowball.html` report created and data files and figures created | ||
- [ ] overlap of the citation networks of each cluster were generated | ||
- [ ] map of clusters as nodes and links between clusters generated | ||
|
||
## Reports | ||
|
||
- [snowballing](snowball.html) |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.