-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ircinia_Community_manuscript_supplemental.Rmd
306 lines (245 loc) · 11.1 KB
/
Ircinia_Community_manuscript_supplemental.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
---
title: "Electronic Supplemental Material"
# subtitle: "For *Sponges presence increases diversity and abundance of fish and invertebrates in subtropical seagrass beds*"
output:
bookdown::pdf_document2:
toc: false
header-includes:
\usepackage{caption}
\renewcommand{\arraystretch}{1.2}
editor_options:
markdown:
wrap: sentence
---
```{r setup, include=FALSE}
options(tinytex.verbose = TRUE)
knitr::opts_chunk$set(
echo = FALSE,
message = FALSE,
warning = FALSE,
collapse = TRUE,
comment = "#>"
)
source("scripts_comm/08_import_results.R")
if(!require(kableExtra))install.packages("kableExtra");library(kableExtra)
```
```{r, include=FALSE}
options(tinytex.verbose = TRUE)
```
Article title:
*Sponges presence increases diversity and abundance of fish and invertebrates in subtropical seagrass beds*
Journal name: Estuaries and Coasts
Author names: Finella M. Campanino^1^, Philina A. English^2^, Craig A. Layman^3^, Stephanie K. Archer^1^*
Affiliations:
1. Louisiana Universities Marine Consortium, Chauvin, Louisiana, USA
2. School of Renewable Natural Resources, Louisiana State University Agricultural Center, Baton Rouge, LA, USA
3. Pacific Biological Station, Fisheries and Oceans Canada, Nanaimo, British Columbia, Canada
4. Center for Energy, Environment, and Sustainability, Department of Biology, Wake Forest University, Winston-Salem, North Carolina, USA
*corresponding author: sarcher@lumcon.edu
Submission Date: July 7, 2022
Revision 1 Submission Date: January X, 2023
\clearpage
```{r extreats, echo=FALSE, fig.align='left', out.width="100%", message=FALSE, warning=FALSE}
knitr::include_graphics("figures/plotphotos.png")
```
Figure S1. Photos of the live sponge (panel A) and structure control (panel B) treatments. Panel A, the photo of the live *Ircinia felix* was taken immediately after the sponge was placed in the plot. The photo of the sponge replica in panel B was taken at the end of this study, 12 months into the experiment. Mounds are likely those of burrowing sea cucumbers, *Holothuria arenicola*.
```{r expdes, echo=FALSE, fig.align='left', out.width="100%", message=FALSE, warning=FALSE}
knitr::include_graphics("figures/Experimental_design_2.pdf")
```
Figure S2. Illustrates the experimental design and sampling scheme. Data was collected prior to treatment establishment, and 1 and 12 months after treatments were established. Fish abundance and taxa richness were counted for whole plots. Other taxonomic groups and seagrass measurements were made in the locations indicated.
\clearpage
\captionsetup[table]{labelformat=empty}
```{r fishtab}
knitr::kable(fish.models[,c(-1:-2,-7,-10)],
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("","k","AICc","Delta AICc",
"Akaike Weight","LL"),
caption="Table S1. All models evaluating competing hypotheses of the drivers of fish abundance and taxa richness.")%>%
kableExtra::kable_styling(latex_options = "scale_down",font_size=11)%>%
kableExtra::pack_rows("Abundance",1,14)%>%
kableExtra::pack_rows("Taxa Richness",15,28)
```
<!-- \clearpage -->
\captionsetup[table]{labelformat=empty}
```{r fishabund}
trt.model.terms<-c("Intercept (Live sponge)",
"Control",
"Structure",
"+1 month",
"+12 months",
"Control : +1 month",
"Structure : +1 month",
"Control : +12 months",
"Structure : +12 months")
fa<-data.frame(fa.treat.sum$coefficients$cond)
row.names(fa)<-trt.model.terms
knitr::kable(round(fa,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S2. Effect sizes, error estimates (SE), z and p values for fixed effects in the best fit model of fish abundance.")%>%
column_spec(1:4,width_max = "1.5cm")%>%
kableExtra::kable_styling(font_size=7, full_width = F)
```
\clearpage
\captionsetup[table]{labelformat=empty}
```{r fistich}
fspr<-data.frame(fspr.treat.sum$coefficients$cond)
row.names(fspr)<-trt.model.terms
knitr::kable(round(fspr,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S3. Effect sizes, error estimates (SE), z and p values for fixed effects in the best fit model of fish taxa richness.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r inverttab}
knitr::kable(invert.models[,c(-1:-2,-7,-10)],
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("","k","AICc","Delta AICc",
"Akaike Weight","LL"),
caption="Table S4. All models evaluating competing hypotheses of the drivers of invertebrate abundance and taxa richness.")%>%
kable_styling(latex_options = "scale_down",font_size=11)%>%
pack_rows("Abundance",1,14)%>%
pack_rows("Taxa Richness",15,28)
```
\clearpage
\captionsetup[table]{labelformat=empty}
```{r invabundlsp}
ia<-data.frame(ia.treat.sum$coefficients$cond)
row.names(ia)<-trt.model.terms
knitr::kable(round(ia,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S5. Effect sizes, error estimates (SE), z and p values for fixed effects in the treatment-only model for invertebrate abundance.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r invabundprod}
ia2<-data.frame(ia.treat.prod.sum$coefficients$cond)
row.names(ia2)<-c("Intercept (Live sponge)",
"Control",
"Structure",
"+1 month",
"+12 months",
"Seagrass productivity",
"Control : +1 month",
"Structure : +1 month",
"Control : +12 months",
"Structure : +12 months")
knitr::kable(round(ia2,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S6. Effect sizes, error estimates (SE), z and p values for fixed effects in the treatment + seagrass productivity model for invertebrate abundance.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r invabundstruct}
ia3<-data.frame(ia.treat.struct.sum$coefficients$cond)
row.names(ia3)<-c("Intercept (Live sponge)",
"Control",
"Structure",
"+1 month",
"+12 months",
"Seagrass structure",
"Control : +1 month",
"Structure : +1 month",
"Control : +12 months",
"Structure : +12 months")
knitr::kable(round(ia3,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S7. Effect sizes, error estimates (SE), z and p values for fixed effects in the treatment + seagrass structure model for invertebrate abundance.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\clearpage
\captionsetup[table]{labelformat=empty}
```{r invspr}
ispr<-data.frame(ispr.treat.sum$coefficients$cond)
row.names(ispr)<-c("Intercept (Live sponge)",
"Control",
"Structure",
"+1 month",
"+12 months",
"Control : +1 month",
"Structure : +1 month",
"Control : +12 months",
"Structure : +12 months")
knitr::kable(round(ispr,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S8. Effect sizes, error estimates (SE), z and p values for fixed effects in the treatment only model for invertebrate taxa richness.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r invspralg}
ispr2<-data.frame(ispr.alg.sum$coefficients$cond)
row.names(ispr2)<-c("Intercept",
"+1 month",
"+12 months",
"Macroalgal abundance")
knitr::kable(round(ispr2,2),
# format = "latex",
booktabs=T,
# escape = FALSE,
col.names = c("Estimate","SE","Z","p value"),
caption="Table S9. Effect sizes, error estimates (SE), z and p values for fixed effects in the macroalgal abundance model for invertebrate taxa richness.")%>%
column_spec(1:4, width_max = "1.5cm")%>%
kableExtra::kable_styling( font_size=7, full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r fishcv}
fish.cv.sum$treatment<-c("Control","Structure","Live sponge")
colnames(fish.cv.sum)<-c("Treatment","Mean vector length","sd of vector length","Vectors longer than 0","Mean vector angle","rho","sd of vector angle")
fish.cv.sum<-fish.cv.sum%>%select(-rho)
knitr::kable(fish.cv.sum,
# format = "latex",
booktabs=T,
# escape = FALSE,
caption="Table S10. Summary of individual plot vectors representing changes in the fish community in species space over the 1 year experiment.")%>%
column_spec(2:6, width_max = "1.5cm")%>%
kableExtra::kable_styling(latex_options = "scale_down",font_size=10,full_width = F)
```
\captionsetup[table]{labelformat=empty}
```{r invcv}
inv.cv.sum$treatment<-c("Control","Structure","Live sponge")
colnames(inv.cv.sum)<-c("Treatment","Mean vector length","sd of vector length","Vectors longer than 0","Mean vector angle","rho","sd of vector angle")
inv.cv.sum<-inv.cv.sum%>%select(-rho)
kable(inv.cv.sum,
# format = "latex",
booktabs=T,
# escape = FALSE,
caption="Table S10. Summary of individual plot vectors representing changes in the invertebrate community in species space over the 1 year experiment.")%>%
column_spec(2:6, width_max = "1.5cm") %>%
kableExtra::kable_styling(latex_options = "scale_down",font_size=10,full_width = F)
```
\clearpage
```{r fishcvplot, echo=FALSE, fig.align='left', out.width="60%", message=FALSE, warning=FALSE}
knitr::include_graphics("fish_compositional_vector_plot.jpg")
```
Figure S3. Vectors representing how experimental plots moved in fish species space over the 1 year experiment decomposed into their lengths (A) and angles (Control: B, Structure: C, Live Sponge: D).
<!-- \clearpage -->
```{r invcvplot, echo=FALSE, fig.align='left', out.width="60%", message=FALSE, warning=FALSE}
knitr::include_graphics("invert_compositionalvectors_plot.jpg")
```
Figure S4. Vectors representing how experimental plots moved in invertebrate species space over the 1 year experiment decomposed into their lengths (A) and angles (Control: B, Structure: C, Live Sponge: D).