-
Notifications
You must be signed in to change notification settings - Fork 0
/
tank-data.Rmd
78 lines (53 loc) · 1.58 KB
/
tank-data.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
73
74
75
76
77
78
---
title: "Tank Data <div><i> in situ </i></div>"
output:
html_document:
toc: no
highlight: tango
editor_options:
chunk_output_type: console
---
```{r setup, include = FALSE}
knitr::opts_chunk$set(echo = FALSE)
knitr::opts_chunk$set(dpi = 300)
knitr::opts_chunk$set(warning = FALSE)
knitr::opts_chunk$set(message = FALSE)
source(here::here('R', '00_vis_custom.R'))
source(here::here('R', '00_load-packages.R'))
```
```{r load-data, include = FALSE, results = FALSE}
source(here::here('R', '02_load_data.R'))
source(here::here('R', '03_wrangle_data.R'))
```
Contains all data from the tank (*in situ*) collection method from all reserves that submitted data.
# TAL Sensor CHLA (RFU) vs. Extracted CHLA ($\mu$g/L) {.tabset .tabset-pills}
## All
```{r}
source(here::here('R', '04.3_tank-figures.R'))
all_tank_figure
```
## Reserve Single
```{r}
all_tank_reserve_figure
```
## All Reserves (w/stats)
```{r}
facet_tank(stat = TRUE)
```
## All Reserves (no stats)
```{r}
facet_tank(stat = FALSE)
```
{-}
# Interference Parameters {.tabset .tabset-pills}
These are the three parameters of interest in the interference testing studies. The following is the chlorophyll a fluorescence (RFU) from the EXO total algae sensor by the extracted $\mu$g/L with the three parameters of interest overlayed as color.
## fDOM
```{r isco-fdom-interf}
tank_interf(param = 2, interact = TRUE)
# tank_interf(param = 2, interact = FALSE) # to make still
```
## Turbidity
```{r isco-turb-interf}
tank_interf(param = 0, interact = TRUE)
# tank_interf(param = 0, interact = TRUE) # to make still
```