View source: R/makeGeneticSummaryTable.R
| makeGeneticSummaryTable | R Documentation |
Generates an HTML table displaying summary statistics (Min, Q1, Mean, Median, Q3, Max) for mean kinship and genome uniqueness values.
makeGeneticSummaryTable(geneticValues)
geneticValues |
data.frame containing genetic value columns, in either of two accepted vocabularies:
Both are normalized internally, so |
Character string containing HTML table markup.
makeFounderStatsTable for founder statistics
gv <- data.frame(
meanKinship = c(0.1, 0.2, 0.3, 0.4, 0.5),
genomeUniqueness = c(0.9, 0.8, 0.7, 0.6, 0.5)
)
html <- makeGeneticSummaryTable(gv)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.