DyadCompare {sequoia} | R Documentation |
Count the number of half and full sibling pairs correctly and incorrectly assigned
DyadCompare(Ped1 = NULL, Ped2 = NULL, na1 = c(NA, "0"))
Ped1 |
Original pedigree, dataframe with 3 columns: id-dam-sire |
Ped2 |
Second (inferred) pedigree |
na1 |
the value for missing parents in Ped1. |
A 3x3 table with the number of pairs assigned as full siblings (FS), half siblings (HS) or unrelated (U, including otherwise related) in the two pedigrees, with the classification in Ped1 on rows and that in Ped2 in columns
## Not run: data(Ped_HSg5, SimGeno_example, LH_HSg5, package="sequoia") SeqOUT <- sequoia(GenoM = SimGeno_example, LifeHistData = LH_HSg5, MaxSibIter = 0) DyadCompare(Ped1=Ped_HSg5, Ped2=SeqOUT$Pedigree) ## End(Not run)