# activate the chunk with eval=TRUE
source("../../load_environment.R")
3 Your Notebook Name
Resource | Information |
---|---|
Data DOI | 10.5281/zenodo.1234567 |
Git + DOI | Git 10.5281/zenodo.7654321 |
Short Description | Short description of the main contributions and notebook structure |
3.1 Introduction
Write an introduction to the analysis. Give references via Mareis, Haug, and Drton (2025). The bibtex entries are saved in references.bib
.
3.2 Loading the Data
Create an R environment and save it in the file renv.lock
with renv::init()
and renv::snapshot()
. For detailed information, see the renv website. Load the R environment with our standardized loading function.
Shortly describe the packages that were responsible for the R environment.
# Used packages, only for information.
library(package1) # function of package1
library(package2) # function of package2
Load the data. Prefereably from Zenodo:
# Load Data
<- ZenodoManager$new(logger = NULL)
zenodo <- zenodo$getRecordByDOI("10.5281/zenodo.1234567")
record <- record$listFiles(pretty = TRUE)
files <- as.matrix(read.csv(files[1, 4])) alarm
3.3 Analysis
Write some educational analysis text and carry out the analysis.
mean(c(1 + 2, 3 * 4))
[1] 7.5
Analysis in other languages, e.g., Python are welcome as well.
-1 / -2
[1] 0.5
# activate the chunk with eval=TRUE
source("../../close_environment.R")
Citing this Notebook
Please cite XYZ with the following bib item.
@article{XYZ
}
When using the ABC dataset, please give credit to the original author: Author year.
Additional Information
License Information: Please follow the above DOI for license information of data and code.
Contact: If you have suggestions, feel free to create an issue or contact the authors (your@mail.address).