print.summaryAlphaPart | R Documentation |
Print method for objects of the class
summaryAlphaPart
(result of summary(AlphaPart(...))
).
## S3 method for class 'summaryAlphaPart' print(x, ...)
x |
summaryAlphaPart, output object from
|
... |
Arguments passed to other functions (not used at the moment). |
summary.AlphaPart
## --- Partition additive genetic values by loc --- res <- AlphaPart(x=AlphaPart.ped, colPath="country", colBV=c("bv1", "bv2")) ## Summarize whole population ret <- summary(res) ## Summarize population by generation (=trend) ret <- summary(res, by="gen") ## Summarize population by generation (=trend) but only for domestic location ret <- summary(res, by="gen", subset=res[[1]]$country == "domestic") ## --- Partition additive genetic values by loc and gender --- AlphaPart.ped$country.gender <- with(AlphaPart.ped, paste(country, gender, sep="-")) res <- AlphaPart(x=AlphaPart.ped, colPath="country.gender", colBV=c("bv1", "bv2")) ## Summarize population by generation (=trend) ret <- summary(res, by="gen") ## Summarize population by generation (=trend) but only for domestic location ret <- summary(res, by="gen", subset=res[[1]]$country == "domestic")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.