-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path10-Week10.Rmd
32 lines (21 loc) · 971 Bytes
/
10-Week10.Rmd
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
# Week 10: Landscape Resistance {#Week10}
This week's lab shows how to define cost surfaces and calculate cost distances.
- [Worked Example](#WE_10)
- [Bonus Vignette](#bonus-10a): `radish` tutorial
Note: The worked examples in the Advanced Topics section require the R skills developed in the Basic Topics (Weeks 1 - 8).
## Worked Example{#WE_10}
```{r echo=FALSE, results = 'asis'}
rmd_file <- paste0(here::here(), "/vignettes/", "Week10_vignette.Rmd")
yml_metadata <- rmarkdown::yaml_front_matter(rmd_file)
cat(yml_metadata$author)
```
```{r child=paste0(here::here(), "/vignettes/", "Week10_vignette.Rmd"), echo=TRUE}
```
## Bonus: 'radish' tutorial {#bonus-10a}
```{r echo=FALSE, results = 'asis'}
rmd_file <- paste0(here::here(), "/vignettes/", "Week10_bonus_vignette.Rmd")
yml_metadata <- rmarkdown::yaml_front_matter(rmd_file)
cat(yml_metadata$author)
```
```{r child=paste0(here::here(), "/vignettes/", "Week10_bonus_vignette.Rmd"), echo=TRUE}
```