plotGenotype {tigger} | R Documentation |
Show a colorful representation of a genotype
Description
plotGenotype
plots a genotype table.
Usage
plotGenotype(
genotype,
facet_by = NULL,
gene_sort = c("name", "position"),
text_size = 12,
silent = FALSE,
...
)
Arguments
genotype |
|
facet_by |
column name in |
gene_sort |
string defining the method to use when sorting alleles.
if |
text_size |
point size of the plotted text. |
silent |
if |
... |
additional arguments to pass to ggplot2::theme. |
Value
A ggplot object defining the plot.
See Also
Examples
# Plot genotype
plotGenotype(SampleGenotype)
# Facet by subject
genotype_a <- genotype_b <- SampleGenotype
genotype_a$SUBJECT <- "A"
genotype_b$SUBJECT <- "B"
geno_sub <- rbind(genotype_a, genotype_b)
plotGenotype(geno_sub, facet_by="SUBJECT", gene_sort="pos")
[Package tigger version 1.1.0 Index]