Birth year probabilities
Estimate the probability that an individual with unknown birth
year is born in year y
, based on the (estimated) birth years of its
parents and offspring and the age distribution of other parent-offspring
pairs.
CalcBYprobs(Pedigree = NULL, LifeHistData = NULL, AgePrior = NULL)
Pedigree |
dataframe with columns id-dam-sire. |
LifeHistData |
dataframe with 3 columns (optionally 5):
If the species has multiple generations per year, use an integer coding such that the candidate parents' ‘Birth year’ is at least one smaller than their putative offspring's. Column names are ignored, so ensure column order is ID - sex - birth year (- BY.min - BY.max). Individuals do not need to be in the same order as in ‘Pedigree’, nor do all individuals in the pedigree need to be included. |
AgePrior |
a matrix with probability ratios for individuals with age
difference A to have relationship R, as generated by
|
This function assists in estimating birth years of individuals for which these are unknown, provided they have at least one parent or one offspring in the pedigree. It is not a substitute for field-based estimates of age, only a method to summarise the pedigree + birth year based information.
No distinction is made between genotyped and non-genotyped or dummy individuals.
A matrix with for each individual (rows) in the pedigree that has a missing
birth year in LifeHistData
, or that is not included in
LifeHistData
, the probability that it is born in y
(columns).
Probabilities are rounded to 3 decimal points and may therefore not sum
exactly to 1.
Any errors in the pedigree or lifehistory data will cause errors in the birth year probabilities of their parents and offspring, and putatively also of more distant ancestors and descendants. If the ageprior is based on the same erroneous pedigree and lifehistory data, all birth year probabilities will be affected.
MakeAgePrior
to estimate effect of age on
relationships.
data(SeqOUT_griffin, package="sequoia") BYprobs <- CalcBYprobs(Pedigree = SeqOUT_griffin$Pedigree, LifeHistData = SeqOUT_griffin$LifeHist) lattice::levelplot(t(BYprobs), aspect="fill", col.regions=hcl.colors)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.