Adapted and excerpted from
Miranda D. Redmond, Daniel L. Preston, and Rowan M. Gaffney. 2014. Effects of multiple invasive species in experimental aquatic communities. Teaching Issues and Experiments in Ecology, Vol. 10: Practice #2. http://tiee.esa.org/vol/v10/issues/datasets/redmond/abstract.html
Preston DL, Henderson JS, Johnson PT. 2012. Community ecology of invasions: direct and indirect effects of multiple invasive species on aquatic communities. Ecology 93:1254-1261.
Invasive species can alter the ecology and evolution of native species and are important drivers of extinction (Vitousek et al. 1997, Clavero and Garcia-Berthou 2005). Yet, when species introductions occur alongside other types of environmental change, it can be challenging to disentangle the ecological impacts of individual nonnative species relative to other stressors (Didham et al. 2005, Light and Marchetti 2007). This challenge becomes amplified when multiple nonnative species co-occur. Understanding the individual and combined effects of multiple invasive species is especially important to natural resource managers, who are often pressed to prioritize which invasive species to manage (Simberloff et al. 2005).
Two common invaders in freshwater habitats in western North America are the mosquitofish (Gambusia affinis and G. holbrooki) and the American bullfrog (Lithobates catesbeianus or Rana catesbeiana). Both species are native to the eastern United States. Mosquitofish are the most widespread freshwater fish and have been introduced on every continent besides Antarctica, while bullfrogs are invasive throughout western North America and regions of South America, Europe, and Asia (Lever 2003, Pyke 2008). Both species have deleterious effects on native aquatic communities; mosquitofish prey on a wide diversity of aquatic invertebrates, amphibians, and other fish (Goodsell and Kats 1999, Leyse et al. 2004), and bullfrogs have negative effects on other aquatic amphibians through competition, predation, and disease transmission (Kiesecker et al. 2001, Pearl et al. 2004).
In this activity, you will use data from an outdoor mesocosm experiment to explore how these two common invasive species, mosquitofish and the American bullfrog, influence the native amphibian community and other aquatic taxa (snails, zooplankton, and phytoplankton). Bullfrog larvae are herbivores and mosquitofish prey on treefrogs, newts, and zooplankton. You will examine both the direct and indirect effects of two invasive species on native amphibians.
How does the presence of bullfrogs and mosquitofish influence the survival of native amphibian species?
How does the presence of bullfrogs and mosquitofish influence the mass (an indicator of amphibian growth) of the native amphibians that survived?
How does the presence of bullfrogs and mosquitofish influence the density of snails, zooplankton (Daphnia and copepods), and phytoplankton (i.e. relative phytoplankton fluorescence)?
What are the null hypotheses?
A total of 20 outdoor pond mesocosms were established by placing 370 L of well water, 45 ml of pond mud, 15 g of rabbit chow, 25 g of dry leaf litter, and 1.25 L of pond water containing concentrated zooplankton into each plastic tank (1.3 m Length × 0.79 m Width × 0.64 m Height).
Mesocosms are small-scale representations of larger systems, which make it possible to do controlled experiments in a semi-realistic setting. The experiment involved a 2 x 2 factorial design (4 total treatments) that manipulated the presence of mosquitofish and bullfrogs within outdoor mesocosms.
The pond mud was added to introduce algae cells, the rabbit chow provided a source of nutrients to fuel growth of primary producers, and the dry leaf litter served as a source of cover for the amphibians. In each mesocosm, 10 native snails (Helisoma sp.), 15 native Pacific tree frog (Pseudacris regilla) tadpoles, 15 native western toad (Bufo boreas) tadpoles and 10 native California newts (Taricha torosa) were added. Five of the mesocosms only had the three native amphibian species (Native treatment). For the other 15 mesocosms, five of the mesocosms had 3 invasive American bullfrog tadpoles added in addition to the native species (Bullfrog treatment), five of the mesocosms had 5 invasive mosquitofish added in addition to native species (Mosquitofish treatment), and 5 of the mesocosms had 3 invasive American bullfrog tadpoles and 5 mosquitofish added in addition to the native species (Bullfrog + Mosquitofish treatment).
Species codes (used on many of the spreadsheets):
‐ PSRE = Pacific Tree Frog (Pseudacris regilla)
‐ BUBO = western Toad (Bufo boreas)
‐ TATO = California newt (Taricha torosa)
Number of Zooplankton: Number in a sample of 6.9 L of water for the mesocosm.
Run Number (phytoplankton): Each sample was run five times. Use the mean of the five runs as the value for that mesocosm.
Phytoplankton Fluorescence = A relative value that measures the amount of light absorbed by chlorophyll in the sample. These numbers do not have units because they are relative to a sample blank, rather than absolute measurements.
Note that code is not provided for commands that have been provided previously. Refer to prior exercises if necessary.
tidyverse
The data can be found at the following paths relative to your home folder:
“../shared/treatments.csv”
“../shared/Amphib_survival.csv”
“../shared/Amphib_mass.csv”
“../shared/phytoplankton.csv”
“../shared/snails_zoopl.csv”
Stop and think: what is missing from the survival data frame to answer this question?
To put two data frames together based on a shared variable use the left_join
function. This function takes two data frames and adds information from the right frame into the left frame while retaining the entire left frame.
amphib_survival2 <- left_join(amphib_survival,treatments)
Now create a plot to examine the question.
How would you answer the question?
To compare the means of more than two groups (i.e. the three treatments here compared to the control) we use an Analysis of Variance (ANOVA). Note that because this experiment follows a factorial design (i.e. two interacting factors: bullfrogs, mosquitofish, and both), we not only need to look at the impacts of the individual factors, but their interaction. Because of this interaction we will change our data table a bit so that each row is coded for whether bullfrogs are present or absent, and whether mosquitofish are present or absent.
treatments2 <- read.csv("treatments2.csv")
amphib_survival3 <- left_join(amphib_survival,treatments2)
Now you can construct the linear model relating the number of survivors to the treatment, and output the ANOVA table. Note that this looks similar to the linear regression we conducted earlier in the semester, but for this analysis we have multiple categorical explanatory variables (the * in the arguments allow for the interaction term).
lm_survivors <- lm(No_of_Survivors ~ Bullfrog * Mosquitofish, data = amphib_survival3)
anova(lm_survivors)
Look at the column Pr(>F)
. This is the p-value, which is the probability that the observed F value (the ratio of the group mean square and the error mean squre) would have occured by chance if the null hypothesis (the means for all treatments are equal) was true.
Which explanatory variable(s) impact the number of survivors? Is this consistent with your plot?
Now output the R^2 value from the summary of the linear model. R^2 is the contribution of the differences among groups to the total variation in the data.
summary(lm_survivors)
Note: The adjusted R-squared is a modified version of R-squared that has been adjusted for the number of predictors in the model. The adjusted R-squared increases only if the new term improves the model more than would be expected by chance. It decreases when a predictor improves the model by less than expected by chance.
Note that in this analysis we have treated survivors of all species equally even though we observe in the graph that the treatment effect varied with species. Repeat the analysis for each species separately.
Are there differences in impacts on different species?
Multiple measurements within a mesocosm (e.g. amphibian mass) are not independent of one another.
Calculate the mean value per mesocosm and use this as the response variable. Hint: you’ll need to make a new table.
Add the treatment information to the new table.
Answer the question using a plot and ANOVA.
Don’t forget to calculate density from counts.