You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Read in RData files processed in the data processing Rmd file
@@ -247,6 +248,41 @@ ggsave(path = plots,
247
248
248
249
```
249
250
251
+
## Plot Abundance of Cyclotella
252
+
SIMPER analysis showed that the genus Cyclotella was a primary differentiator between the upstream and downstream regions. This code creates a boxplot to look at the differential abundance between each region.
253
+
254
+
```{r cyclotella, echo=FALSE, message=FALSE}
255
+
256
+
# Compare Cyclotella Abundance Upstream and Downstream -------------------------
257
+
258
+
theme_set(theme_bw())
259
+
260
+
p_cyc <- ggplot(df_phyto_FASTR_gen_BV,
261
+
aes(x = Region,
262
+
y = log10(BV.um3.per.mL+1))) +
263
+
geom_jitter(data = subset(df_phyto_FASTR_gen_BV, Genus == "Cyclotella"),
264
+
width = 0.1) +
265
+
geom_boxplot(data = subset(df_phyto_FASTR_gen_BV, Genus == "Cyclotella"),
0 commit comments