tabD: Dominance relationship matrix *D* in a tabular-sparse format

View source: R/tabD.R

tabDR Documentation

Dominance relationship matrix D in a tabular-sparse format

Description

Creates the pedigree-based dominance relationship data.frame.

Usage

tabD(ped, A)

Arguments

ped

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

A

: Relationship matrix A in a tabular format created by function tabA.

Value

Dominance relationship data.frame

Examples

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


ggroups documentation built on March 28, 2022, 1:06 a.m.