buildA {ggroups}R Documentation

Relationship matrix A

Description

Builds the pedigree-based additive genetic relationship matrix.

Usage

buildA(ped)

Arguments

ped

: data.frame with integer columns corresponding to ID, SIRE, DAM. Missing value is 0.

Value

Relationship matrix A

Examples

ped = data.frame(ID=1:6, SIRE=c(0,0,1,3,1,4), DAM=c(0,0,2,2,2,5))
buildA(ped)


[Package ggroups version 2.1.2 Index]