| ladybird | R Documentation |
An experiment was conducted to study the transmission of fungus from ladybirds to aphids on two host plant types (beans or birdsfoot trefoil). The study used containers, each holding one plant with 20 aphids, and varied the fungal load by distributing 5, 10, or 20 sporulating aphid cadavers per plant. For each host plant and fungal load combination, half of the containers were exposed to ladybird foraging for four hours, and half were not, creating a three-way factorial structure: Host (two levels), Cadaver (three levels), and Ladybird presence (two levels). This setup was blocked in two runs (Run), with six replicates per treatment combination per run, resulting in a total of 72 experimental units. Each unit (DPlant) was randomly assigned treatments, and after seven days, the numbers of live (Live) and infected (Infected) aphids were counted. Due to aphid predation by ladybirds, the number of live aphids varied, so the percentage of infected aphids was used to quantify transmission rates. This dataset enables analysis of the main and interactive effects of host plant, fungal load, and ladybird presence on aphid infection rates.
ladybird
A data frame with 8 variables: ID, Run, DPlant, Host, Ladybird, Cadaver, Live, Infected.
Factor. Unique identifier for each experimental container (observation).
Factor. Experimental run (1 or 2), indicating replicate.
Factor. Unique identifier for each experimental plant within a run (1–36).
Factor. Type of host plant in the container ("beans" or "trefoil").
Factor. Indicator for presence ("+") or absence ("-") of ladybird foraging in the container.
Integer. Number of sporulating aphid cadavers distributed on each plant (5, 10, or 20).
Integer. Number of live aphids remaining in the container after seven days.
Integer. Number of live aphids found to be infected after seven days.
Welham, S. J., Gezan, S. A., Clark, S. J., and Mead, A. (2015) Statistical Methods in Biology: Design and analysis of experiments and regression
summary(aov(log(P / (100 - P)) ~ Host * Cadaver * Ladybird + Error(Run/DPlant),
data = ladybird |>
transform(P = 100 * (Infected + 1) / (Live + 2),
Cadaver = factor(Cadaver))))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.