Learn R Programming

smbdata (version 0.2.0)

conidia: Conidial release experiment

Description

This experiment was designed to measure aphid infection rates in response to varying fungal conidia doses, as delivered by sporulating cadavers of two different sources: a clone or a standard source (Source). Inoculation chambers containing aphids were exposed to conidial showers for one of eight time periods, ranging from 0 to 80 minutes (Time). The actual conidial dose received in each treatment was estimated by counting spores deposited on slides (Conidia) placed in the chambers. Each combination of time period and source was replicated across two experimental runs (Run), with separate sources used for each replicate. The time zero category served as a negative control and, as no conidia should be present at this time, resulting zero counts confirm the absence of slide contamination; this category is excluded from analysis. The resulting dataset supports investigation of the relationship between exposure time, conidial dose, and source type under replicated experimental conditions.

Usage

conidia

Arguments

Format

A data frame with 7 variables: ID, Run, DUnit, Source, Time, Period, Conidia.

ID

Factor. Unique identifier for each observation.

Run

Factor. Experimental run indicator (each time period and source combination is repeated in two separate runs).

DUnit

Factor. Identifier for each experimental unit within a run.

Source

Factor. Source of sporulating cadaver ("Clone" or "Standard") providing the fungal conidia.

Time

Integer. Duration of exposure (in minutes) to the conidia shower (excluding zero-time controls).

Period

Integer. Index for the time period (e.g., 1 for the first non-zero time, 2 for the second, etc.).

Conidia

Integer. Number of conidia (spores) counted on slides for the corresponding experimental unit.

Examples

Run this code
glm(Conidia ~ Run + (log(Time) + Period) * Source,
    data = conidia |>
      transform(Period = factor(Period)),
    family = poisson())

Run the code above in your browser using DataLab