-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTutorial.Rmd
More file actions
56 lines (41 loc) · 1.01 KB
/
Tutorial.Rmd
File metadata and controls
56 lines (41 loc) · 1.01 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
title: "Decision Modeling for Agroecology"
author: "Cory Whitney"
date: "`r Sys.Date()`"
output: learnr::tutorial
runtime: shiny_prerendered
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(decisionSupport)
library(ggplot2)
library(learnr)
library(shiny)
library(DiagrammeR)
source("functions/monte_carlo.R")
source("functions/monte_carlo_add.R")
source("functions/apples_sheep_in_class.R")
source("functions/apple_sheep_pareto.R")
```
```{r, child="sections/00_introduction.Rmd"}
```
```{r, child="sections/01_decision_modeling.Rmd"}
```
```{r, child="sections/02_decision_options.Rmd"}
```
```{r, child="sections/03_dags.Rmd"}
```
```{r, child="sections/04_monte_carlo_basic.Rmd"}
```
```{r, child="sections/05_decisionSupport.Rmd"}
```
```{r, child="sections/06_monte_carlo_reference.Rmd"}
```
```{r, child="sections/07_monte_carlo_add.Rmd"}
```
```{r, child="sections/08_pareto.Rmd"}
```
```{r, child="sections/09_next_steps.Rmd"}
```
```{r, child="sections/10_final_reflection.Rmd"}
```