informed_ds {DynaRankR} | R Documentation |
David's Score method informed by prior information
Description
Use David's Score method to infer a dominance hierarchy over multiple study periods. New contestants are added according to the convention specified by the user. Scores are calculated using Dij and are normalized. Full description of the addition of new individuals is described in Strauss & Holekamp (in revision). To run the original David's Score procedure, use convention flag 'none'.
Usage
informed_ds(contestants, convention, initial.ranks = NULL, interactions)
Arguments
contestants |
A dataframe with the identities of the contestants for each study period along with the relevant data for adding them to the hierarchy. There should be one row per contestant per study period. Periods should appear in chronological order. The dataframe should contain the following columns:
|
convention |
A flag determining how new individuals are added to the hierarchy. The value of this flag influences how the convention1 and convention2 columns of the contestants argument are interpreted. Currently this function supports five options:
|
initial.ranks |
The initial ordering of individuals for the first study period. Required if using maternal rank inheritance as the convention. For other conventions, if initial.ranks is not specified, the order determined by convention1 is used to create the initial order. |
interactions |
A dataframe of interaction data with the following columns:
|
Value
Produces a dataframe with the following columns:
- period
Study period.
- id
Identity of contestant.
- score
David's Score of contestant.
- rank
Ordinal rank of contestant in study period. Lower numbers equal higher rank.
- stan.rank
Rank of contestant standardized for group size. Values range from 1 (highest rank) to -1 (lowest rank).
- old.order
Identity of contestants arranged in the previous order (the order they were in before updating the order based on observations from the current study period).
References
Strauss ED & Holekamp KE (in revision). Journal of Animal Ecology.
de Vries H, Stevens JMG, Vervaecke H (2006). Animal Behavior.
Examples
##Informed ds
female.ranks <- informed_ds(contestants = C.crocuta.female$contestants, convention = 'mri',
initial.ranks = C.crocuta.female$initial.ranks,
interactions = C.crocuta.female$interactions)
##Standard ds
female.ranks <- informed_ds(contestants = C.crocuta.female$contestants, convention = 'none',
interactions = C.crocuta.female$interactions)