bdsmatrix.ibd {bdsmatrix} | R Documentation |
Create a bdsmatrix from a list
Description
Routines that create identity-by-descent (ibd) coefficients
often output their results as a list of values (i, j, x[i,j]),
with unlisted values of the x matrix assumed to be zero.
This routine recasts such a list into
bdsmatrix
form.
Usage
bdsmatrix.ibd(id1, id2, x, idmap, diagonal)
Arguments
id1 |
row identifier for the value, in the final matrix.
Optionally, |
id2 |
column identifier for the value, in the final matrix. |
x |
the value to place in the matrix |
idmap |
a two column matrix or data frame.
Sometimes routines create output with integer values for
|
diagonal |
If diagonal elements are not preserved in the list, this value
will be used for the diagonal of the result.
If the argument appears, then the output matrix will contain
an entry for each value in |
Details
The routine first checks for non-symmetric or otherwise inconsistent input.
It then groups observations together into ‘families’ of
related subjects, which determines the structure of the final matrix.
As with the makekinship
function,
singletons with no relationships are first in the output matrix, and
then families appear one by one.
Value
a bdsmatrix
object representing a
block-diagonal sparse matrix.
See Also
bdsmatrix, kinship, coxme, lmekin
Examples
## Not run:
ibdmat <- bdsmatrix.ibd(i,j, ibdval, idlist=subject)
## End(Not run)