-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplan.Rmd
73 lines (47 loc) · 3.57 KB
/
plan.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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Plan: The OHI Process {#plan}
The OHI follows a very structured approach. There are core elements and approaches that you will not change, as well as tailorable elements that you can fit your needs. It's important to begin your OHI+ assessment in a way that organized, collaborative, and iterative, expecting that team members might change and that methods might be revisited. Thus, working like a team and building in resilience from the beginning is critical: focus on documentation and sharing and avoid having only one person who knows or can do something.
<br>
```{r setup-plan}
knitr::opts_chunk$set(echo = FALSE, message=FALSE, warning=FALSE)
## load libraries
library(tidyverse)
library(glue)
library(gt)
## read in data
sched_sheet <- read_csv("schedule_sheet.csv")
```
```{r plan-table}
## wrangle
sched <- sched_sheet %>%
mutate(Action = case_when(!is.na(Link1) ~ glue("[{Action}]({Link1})"),
is.na(Link1) ~ Action)) %>%
filter(Chapter == "Plan") %>%
mutate(Section = row_number()) %>%
# TODO mutate(Section = glue Rmd header anchor link
select(Section, Topic, Action, Minutes)
## create gt table
source("create_ohi_gt.R")
sub_gt <- create_ohi_gt(sched) %>%
tab_header(title = "OHI Onboarding Roadmap: Plan")
sub_gt
```
## `r sched$Topic[1]`
**`r sched$Action[1]`.**
These slides developed by OHI+ Northeast leads Courtney Scarborough and Jamie Afflerbach Montgomery describe the thinking and logic behind tailoring global goal models to smaller spatial scales, in this case the Northeastern United States. See also <https://ohi-science.org/goals> for comparisons of several goal models developed in OHI+ assessments.
## `r sched$Topic[2]`
**`r sched$Action[2]`.**
Chapter 3 of the Toolbox Training helps orient your thinking around how to plan and gather data. Additionally, the [OHI Data Planner](https://ohi-science.org/toolbox-training/planner-guide.html) presented in Chapter 4 of the Toolbox Training is a spreadsheet that you can copy/download and use to help organize and prioritize your thinking around data available for your assessment.
## `r sched$Topic[3]`
**`r sched$Action[3]`.**
This publication by the OHI team shares how several free software tools fundamentally upgraded the approach to collaborative research, making the entire OHI workflow more transparent and streamlined. It provides background and theory to how we use the OHI Toolbox and why.
**Our path to better science in less time using open data science tools** (Lowndes et al 2017, *Nature Ecology & Evolution*).
## Further learning {#plan-further}
- [Operationalizing better science in less time](https://docs.google.com/presentation/d/1OHe4C2B9cGnT9niSguXwsWiK0M2sDsdeNjTOLWAgBX4/edit?usp=sharing), (Lowndes 2020). These slides describe how OHI is about environmental assessments, but it's also about open data science and empowerment, resilience, and inclusion and the importance of teamwork.
- [On Building Transparency and Trust for Healthy New England Seas](https://ohi-science.org/news/transparent-trust-new-england-seas) (Seifert 2019)
- [Open data science for marine management](https://ohi-science.org/news/ohi-and-open-data-science) (Lowndes 2017)
- [What does scientific reproducibility look like?](https://ohi-science.org/news/scientific-reproducibility-with-fellows) (O'Reilly & Seifert 2018)
- [The OHI Toolbox is useful far beyond ocean management](https://ohi-science.org/news/what-is-the-ohi-toolbox) (Lowndes 2018)
- <https://ohi-science.org/plan>
<!---
This process is summarized on the [ohi-science.org OHI+ page](https://ohi-science.org/projects/ohi-plus/).
--->