| beetles | R Documentation |
The dataset comes from a completely randomized experiment investigating the viability of interspecies and intraspecies mating in two willow beetle species (Phratora vitellinae and Phratora vulgatissima). Females from each species were mated with males of either the same or the other species, giving four treatments with 10 replicates per treatment. The dataset includes the factor Treatment, identifying the mating combination, and the response variable Eggs, which records the number of eggs laid by each female, and is used to compare reproductive outcomes across mating types.
beetles
A data frame with 5 variables: DFemale, Treatment, Species, MateType, Eggs.
Factor. Unique identifier for each female subject in the experiment.
Factor. Experimental treatment group assigned to each female.
Factor. Species designation for each female in the study.
Factor. Type of mate provided for each female ("Inter" for interspecific or "Intra" for intraspecific, as relevant).
Integer. Number of eggs laid by each female during the observation period.
Welham, S. J., Gezan, S. A., Clark, S. J., and Mead, A. (2015) Statistical Methods in Biology: Design and analysis of experiments and regression
Peacock, L., Batley, J., Dungait, J. A. J., Barker, J. H. A., Powers, S. J. & Karp, A. (2004). A comparative study of interspecies mating of Phratora vulgatissima and P. vitellinae using behavioural tests and molecular markers. Entomologia Experimentalis et Applicata, 110(3), 231–241.
fit <- lm(log10(Eggs) ~ Species * MateType, data = beetles)
anova(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.