Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rkrug committed Feb 27, 2024
1 parent d9e0102 commit faf7cb5
Show file tree
Hide file tree
Showing 51 changed files with 109,924 additions and 0 deletions.
19,679 changes: 19,679 additions & 0 deletions IPBES-TCA-Chap3 > Snowballsearch > Next and last steps _).eml

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions IPBES_TCA_Ch3_clusters.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
60 changes: 60 additions & 0 deletions Makefile
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

60 changes: 60 additions & 0 deletions README.md
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 added data/cluster.rds
Binary file not shown.
Binary file added figures/cluster_1_S1_cited_by_count.pdf
Binary file not shown.
Binary file added figures/cluster_1_S1_cited_by_count.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added figures/cluster_1_S1_cited_by_count_by_year.pdf
Binary file not shown.
Binary file added figures/cluster_1_S1_cited_by_count_by_year.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit faf7cb5

Please sign in to comment.