freqdist.evaluate.core {EvaluateCore} | R Documentation |
Plot stacked frequency distribution histogram to graphically compare the probability distributions of traits between entire collection (EC) and core set (CS).
freqdist.evaluate.core(
data,
names,
quantitative,
qualitative,
selected,
highlight = NULL,
include.highlight = TRUE,
highlight.se = NULL,
highlight.col = "red"
)
data |
The data as a data frame object. The data frame should possess one row per individual and columns with the individual names and multiple trait/character data. |
names |
Name of column with the individual names as a character string |
quantitative |
Name of columns with the quantitative traits as a character vector. |
qualitative |
Name of columns with the qualitative traits as a character vector. |
selected |
Character vector with the names of individuals selected in
core collection and present in the |
highlight |
Individual names to be highlighted as a character vector. |
include.highlight |
If |
highlight.se |
Optional data frame of standard errors for the
individuals specified in |
highlight.col |
The colour(s) to be used to highlighting individuals in
the plot as a character vector of the same length as |
A list with the ggplot
objects of stacked frequency
distribution histograms plots for each trait specified as
quantitative
and qualitative
.
####################################
# Use data from R package ccChooser
####################################
library(ccChooser)
data("dactylis_CC")
data("dactylis_EC")
ec <- cbind(genotypes = rownames(dactylis_EC), dactylis_EC[, -1])
ec$genotypes <- as.character(ec$genotypes)
rownames(ec) <- NULL
ec[, c("X1", "X6", "X7")] <- lapply(ec[, c("X1", "X6", "X7")],
function(x) cut(x, breaks = 4))
ec[, c("X1", "X6", "X7")] <- lapply(ec[, c("X1", "X6", "X7")],
function(x) factor(as.numeric(x)))
head(ec)
core <- rownames(dactylis_CC)
quant <- c("X2", "X3", "X4", "X5", "X8")
qual <- c("X1", "X6", "X7")
####################################
# EvaluateCore
####################################
freqdist.evaluate.core(data = ec, names = "genotypes",
quantitative = quant, qualitative = qual,
selected = core)
checks <- c("D120559", "D120773")
freqdist.evaluate.core(data = ec, names = "genotypes",
quantitative = quant, qualitative = qual,
selected = core,
highlight = checks, highlight.col = "red")
quant.se <- data.frame(genotypes = checks, X2 = c(0.275, 0.25),
X3 = c(0.1, 0.081), X4 = c(0.002, 0.002),
X5 = c(0.093, 0.087), X8 = c(0.125, 0.074))
freqdist.evaluate.core(data = ec, names = "genotypes",
quantitative = quant,
selected = core,
highlight = checks, highlight.col = "red",
highlight.se = quant.se)