
Create Genetic Summary Statistics HTML Table
Source:R/makeGeneticSummaryTable.R
makeGeneticSummaryTable.RdGenerates an HTML table displaying summary statistics (Min, Q1, Mean, Median, Q3, Max) for mean kinship and genome uniqueness values.
See also
makeFounderStatsTable for founder statistics
Examples
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)