Internal function used by dmm()
to construct vectors containing various subsets of the available variance component names, for use in testing and flow control. Made available at user level because it may be useful in constructing the components
argument of dmm()
.
make.ctable()
A list containing the following items:
Vector containing all variance components involving cohort
Vector containing all covariance components involving cohort
Vector containing all (co)variance components involving cohort
Vector containing all environmental variance comonents
Vector containing all environments covariance components
Vector containing all environmental (co)variance components
Vector containing all additive genetic variance components
Vector containing all dominance genetic variance components
Vector containing all additive x additive epistatic genetic variance components
Vector containing all epistatic genetic variance components involving dominance
Vector containing all sexlinked additive genetic variance components
Vector containing all genetic variance components
Vector containing all variance components
Vector containing all additive genetic covariance components
Vector containing all dominance genetic covariance components
Vector containing all additive x additive epistatic genetic covariance components
Vector containing all epistatic genetic covariance components involving dominance
Vector containing all sexlinked additive genetic covariance components
Vector containing all genetic covariance components
Vector containing all genetic (co)variance components
Vector containing all covariance components
Vector containing all additive genetic (co)variance components
Vector containing all dominance genetic (co)variance components
Vector containing all additive x additive epistatic genetic (co)variance components
Vector containing all epistatic genetic (co)variance components involving dominance
Vector containing all sexlinked additive genetic (co)variance components
Vector containing all individual variance components
Vector containing all individual covariance components
Vector containing all individual (co)variance components
Vector containing all maternal variance components
Vector containing all maternal covariance components
Vector containing all maternal (co)variance components
Vector containing all (co)variance components
Vector containing internal codes for type of Z matrix used in constructing column of W
Vector containing internal codes for type of Z matrix used in constructing column of W
Vector containing internal codes for type of relationship matrix used in constructing column of W
Vector of special codes for Z matrix for cohort effects
Vector of special codes for Z matrix for cohort effects
Vector of special codes for Z matrix for cohort effects
Vector of special codes for Z matrix for cohort effects
Vector of special operator codes for cohort effects
Neville Jackson
There are at present 33 variance and cross-effect-covariance components available in dmm()
. Each of these corresponds to a particular effect in a genetic model. Component names are used throughout dmm()
to name rows and columns, and hence to label output. For the user, correct specification of component names is vital. The list generated by an internal call to make.ctable()
is used to check validity, and to manage internal flow control.
Function dmm()
.
library(dmm)
# make a ctable
tmp <- make.ctable()
# see its structure
str(tmp)
# look at all additive genetic variances
tmp$addgvar
# tidy up
rm(tmp)
Run the code above in your browser using DataLab