
Create Genetic Summary Statistics HTML Table
Source:R/makeGeneticSummaryTable.R
makeGeneticSummaryTable.RdCopyright(c) 2017-2025 R. Mark Sharp This file is part of nprcgenekeepr
Details
Generates 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
if (FALSE) { # \dontrun{
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)
} # }