lion_reproduction | R Documentation |
This dataset contains reproductive performance data for female Galapagos sea lions (Zalophus wollebaeki) collected over a 13-year period in the Galapagos archipelago. The data includes information on mother birth dates, body mass, age at first reproduction, and offspring details. This dataset was used to study life history traits and reproductive trade-offs of this tropical apex predator in an unpredictable habitat.
lion_reproduction
A data frame with 48 rows and 12 variables:
Unique identifier for the mother sea lion
Mother's birth date
Whether the birth date is exact ("Yes"), estimated ("No"), or unknown ("Unknown")
Year the mother was born
Age of the mother when first captured (in days)
Average body mass of the mother at one year of age (in kg)
Unique identifier for the pup
Date when the first pup was born
Sex of the offspring ("Male" or "Female")
Year the mother was first observed
Year the mother was last observed
Age at first reproduction (in years)
Kalberer, Stephanie, Meise, Kristine, Trillmich, Fritz, & Krüger, Oliver (2018). Reproductive performance of a tropical apex predator in an unpredictable habitat. Dryad Digital Repository. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.5061/DRYAD.6S48579")}
# Load the dataset
data(lion_reproduction)
# Basic exploration
head(lion_reproduction)
summary(lion_reproduction)
# Calculate mean age at first reproduction
mean(lion_reproduction$AFR)
# Compare age at first reproduction by offspring sex
boxplot(AFR ~ OffspringSex, data = lion_reproduction,
main = "Age at First Reproduction by Offspring Sex",
ylab = "Age (years)")
# Relationship between mother's body mass and age at first reproduction
plot(AverageOneYearBodymass ~ AFR, data = lion_reproduction,
main = "Body Mass vs. Age at First Reproduction",
xlab = "Age at First Reproduction (years)",
ylab = "Average Body Mass at One Year (kg)")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.