-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulations.Rmd
160 lines (111 loc) · 3.65 KB
/
populations.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Populations
## Estimates of animal populations
In `pacea` we include estimates of populations as
calculated from recent stock assessments or analyses.
Currently, we have:
- Pacific Hake spawning biomass and recruitments for the coastwide stock off Canada and United States
- Pacific Harbour Seals abundance (the most abundant pinniped species in the Northeast Pacific)
- Pacific Herring spawning biomass and recruitments for all five stock
assessment regions
- Zooplankton biomass anomalies for 24 species groups in the Strait of Georgia
## Hake biomass
The hake biomass time series is saved as a `tibble` object in `pacea`:
```{r hakebiomass}
hake_biomass
tail(hake_biomass)
```
```{asis, echo = long_talk}
## Hake biomass
```
```{r hakebiomasshelp, eval=FALSE, echo=long_talk}
?hake_biomass
Pacific Hake annual spawning stock biomass (females only) as estimated
by the 2024 stock assessment.
Description:
The Pacific Hake stock is managed and assessed through an
Agreement between Canada and the United States. The spawning stock
biomass (mature females) estimates come from the most recent joint
stock assessment, and, importantly, are for the coastwide stock
from California to British Columbia.
Usage:
hake_biomass
Format:
A tibble also of class `pacea_biomass` with columns:
year: year of the estimate of spawning stock biomass (mature
females), where the estimate is for the start of the year
low: low end (2.5th percentile) of the 95% credible interval for
biomass, units as for `median`
median: median estimate of biomass, in millions of tonnes of
female spawning biomass at the start of the year
...
```
## Hake biomass
Time series of spawning biomass:
```{r hakebiomassplot}
plot(hake_biomass)
```
## Hake recruitment
Estimates of annual recruitment (exclude recent years for any analyses since not
greatly informed by data; see `?hake_recruitment`):
```{r hakerecuitmentplot}
plot(hake_recruitment)
```
## Herring biomass
The herring spawning biomass time series is saved similarly to hake, but
contains values for five regions:
```{r herringbiomass}
herring_spawning_biomass
tail(herring_spawning_biomass)
```
## Herring biomass
Estimates of spawning biomass for one region (HG = Haida Gwaii):
```{r herringbiomassplot}
plot(herring_spawning_biomass,
region = "HG")
```
## Herring recruitment
Estimates of annual age-2 recruitment for one region (HG = Haida Gwaii):
```{r herringrecuitmentplot}
plot(herring_recruitment,
region = "HG")
```
## Pacific Harbour Seals
Estimated abundances for seven regions (and coastwide) were calculated by DFO
(2022; SAR 2022/034), and included here:
```{r seals}
harbour_seals
tail(harbour_seals)
```
## Pacific Harbour Seals
Estimates for each region and coastwide, reproducing Figure 3 of DFO (2022):
```{r sealplot}
plot(harbour_seals)
```
```{asis, echo = long_talk}
## Pacific Harbour Seals
Or just plot estimates for a single region:
```
```{r sealplot2, echo = long_talk, eval = long_talk}
plot(harbour_seals,
region = "SOG")
```
## Zooplankton in the Strait of Georgia
Biomass anomalies of zooplankton biomass from 1996 onwards from
Perry et al. (2021), as extended by Kelly Young each year for DFO's
State of the Pacific Ocean Report.
```{r zooplankton}
zooplankton_sog
```
## Zooplankton in the Strait of Georgia
Default plot of anomalies of total biomass:
```{r zooplot}
plot(zooplankton_sog)
```
```{asis, echo = long_talk}
## Zooplankton in the Strait of Georgia
Or plot anomalies for a specific species group:
```
```{r zooplot2, echo = long_talk, eval = long_talk}
plot(zooplankton_sog,
species_group = "cladocera")
```