This dataset and associated phylogeny describes brain weights, body weights, dietary categories, social systems, mating systems, and group sizes for 143 primate species. These data were originally compiled in DeCasien et al. (2017). The phylogeny is a 50% majority rule consensus tree from the 10k Trees website.
primates
A list containing a dataset and an associated phylogeny. The phylogeny is a pruned consensus tree for 143 species of primate (excluding humans). The dataset is a data frame with 143 observations and 11 variables:
The primate species
The clade of the primate species
Average brain weight, in grams
Average body weight, in grams
A factor with four levels indicating whether the species' dietary category is folivore, frugivore, frugivore/folivore, or omnivore
Percentage of fruit in diet
A factor with four levels indicating whether the species' social system is solitary, pair-living, harem polygyny, or polygynandry
A factor with five levels indicating whether the species' mating system is spatial polygyny, monogamy, polyandry, harem polygyny, or polygynandry
Average group size
DeCasien, A. R., Williams, S. A., & Higham, J. P. (2017). Primate brain size is predicted by diet but not sociality. Nature Ecology & Evolution, 1(5), 0112.
Arnold, C., Matthews, L. J., & Nunn, C. L. (2010). The 10kTrees website: a new online resource for primate phylogeny. Evolutionary Anthropology, 19(3), 114-118.
https://10ktrees.nunn-lab.org/Primates/index.html
if (FALSE) { # \dontrun{
# fit model to primates data
m <-
coev_fit(
data = primates$data,
variables = list(
brain_weight = "lognormal",
body_weight = "lognormal"
),
id = "species",
tree = primates$phylogeny,
# arguments to cmdstanr::sample()
parallel_chains = 4,
seed = 1
)
# print model summary
summary(m)
# plot delta theta
coev_plot_delta_theta(m)
} # }