-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.Rmd
More file actions
32 lines (28 loc) · 987 Bytes
/
Copy pathindex.Rmd
File metadata and controls
32 lines (28 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
title: "Transferfuncties voor het SoilHarmony project"
author: "Ben Serrien"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: ["references.yml","packages.bib"]
csl: https://raw.githubusercontent.com/citation-style-language/styles/master/research-institute-for-nature-and-forest.csl
zotero: true
link-citations: yes
# url: your book url like https://bookdown.org/yihui/bookdown
# cover-image: path to the social sharing image like images/cover.jpg
description: |
SoilHarmony transferfunctions
github-repo: benserrien/transferfunctions
---
# Welkom
Dit is mijn eerste ervaring met bookdown. Deze bookdown dient als kleine samenvatting van mijn mini-literatuurstudie rond *regression dilution* in het kader van het SoilHarmony project waarop ik begin te werken bij INBO.
```{r packages, echo=T, message=F, warning=F}
# packages inladen
library(tidyverse)
library(sf)
library(lme4)
library(mcr)
library(coat)
library(mecor)
library(brms)
```