Module 4
Key topics
- Poisson regression
- Logistic regression
- Generalised linear models
- Generalised linear mixed-effects models
“Ecology has increasingly become a data- and model-centric discipline…”
R
packages and datasets
It is assumed in all following examples of this module that the following code has been executed successfully.
packages used in this module
datasets used in this module
birds
8
birds <- read_delim(paste(base_url, "bird_abundance.csv", sep = "")) %>%
dplyr::select(c("OliveFarm","Management","Turdus_merula","Phylloscopus_collybita")) %>%
pivot_longer(., c(-OliveFarm, -Management), names_to = "Species", values_to = "Count")
lobster
9
mice
10
Source: Partitioning beta diversity to untangle mechanisms underlying the assembly of bird communities in Mediterranean olive groves↩︎
Source: Influence of predator identity on the strength of predator avoidance responses in lobsters.↩︎
Source: Human Gut Microbiota from Autism Spectrum Disorder Promote Behavioral Symptoms in Mice↩︎