magellanic_penguins | R Documentation |
Data from satellite tracking of Magellanic penguins (Spheniscus magellanicus) at Punta Tombo, Argentina, spanning 23 breeding seasons. The dataset contains information on foraging site fidelity, trip characteristics, and reproductive success for individual penguins.
magellanic_penguins
A data frame with 212 rows and 21 variables:
Integer, breeding season year
Integer, unique identifier for each penguin
Integer, sequential penguin number within season
Integer, instrument deployment sequence
Integer, number of long trip pairs
Numeric, mean distance between foraging sites (km)
Numeric, standard deviation of distance between sites (km)
Numeric, minimum distance between foraging sites (km)
Numeric, maximum distance between foraging sites (km)
Factor, type of tracking instrument used
Character, model of tracking instrument
Integer, number of chicks that fledged successfully
Numeric, mean trip duration in days
Numeric, mean trip distance (km)
Numeric, mean bearing of foraging trips (degrees)
Factor, sex of penguin ("Male", "Female")
Integer, total number of foraging trips
Integer, number of chicks at deployment
Integer, number of chicks that starved
Integer, deployment duration in days
Numeric, mean chlorophyll-a concentration
Rebstock, G., Abrahms, B., & Boersma, D. (2022). Data from: Site fidelity increases reproductive success by increasing foraging efficiency in a marine predator. Dryad Digital Repository. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.5061/DRYAD.8931ZCRSV")}
Rebstock, G.A., Abrahms, B. & Boersma, P.D. (2022). Site fidelity increases reproductive success by increasing foraging efficiency in a marine predator. Proceedings of the Royal Society B, 289(1975), 20220175.
# Load the dataset
data(magellanic_penguins)
# Basic exploration
head(magellanic_penguins)
summary(magellanic_penguins)
# Examine foraging efficiency by sex
boxplot(TripDistMean ~ PenguinSex, data = magellanic_penguins,
main = "Mean Trip Distance by Sex",
xlab = "Sex", ylab = "Mean Trip Distance (km)")
# Relationship between site fidelity and reproductive success
plot(magellanic_penguins$DistBetMean, magellanic_penguins$NFledged,
xlab = "Mean Distance Between Sites (km)",
ylab = "Number of Chicks Fledged",
main = "Site Fidelity vs Reproductive Success")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.