objective | R Documentation |
The following optimization objectives are supported by Core Hunter:
EN
Average entry-to-nearest-entry distance (default). Maximizes the average distance between each selected individual and the closest other selected item in the core. Favors diverse cores in which each individual is sufficiently different from the most similar other selected item (low redundancy). Multiple distance measures are provided to be used with this objective (see below).
AN
Average accession-to-nearest-entry distance. Minimizes the average distance between each individual (from the full dataset) and the closest selected item in the core (which can be the individual itself). Favors representative cores in which all items from the original dataset are represented by similar individuals in the selected subset. Multiple distance measures are provided to be used with this objective (see below).
EE
Average entry-to-entry distance. Maximizes the average distance between
each pair of selected individuals in the core. This objective is related to
the entry-to-nearest-entry (EN) distance but less effectively avoids redundant,
similar individuals in the core. In general, use of EN
is preferred.
Multiple distance measures are provided to be used with this objective (see below).
SH
Shannon's allelic diversity index. Maximizes the entropy, as used in information theory, of the selected core. Independently takes into account all allele frequencies, regardless of the locus (marker) where to which the allele belongs. Requires genotypes.
HE
Expected proportion of heterozygous loci. Maximizes the expected proportion of heterozygous
loci in offspring produced from random crossings within the selected core. In contrast to
Shannon's index (SH
) this objective treats each marker (locus) with equal importance,
regardless of the number of possible alleles for that marker. Requires genotypes.
CV
Allele coverage. Maximizes the proportion of alleles observed in the full dataset that are retained in the selected core. Requires genotypes.
The first three objective types (EN
, AN
and EE
) aggregate pairwise distances
between individuals. These distances can be computed using various measures:
MR
Modified Rogers distance (default). Requires genotypes.
CE
Cavalli-Sforza and Edwards distance. Requires genotypes.
GD
Gower distance. Requires phenotypes.
PD
Precomputed distances. Uses the precomputed distance matrix of the dataset.
objective(
type = c("EN", "AN", "EE", "SH", "HE", "CV"),
measure = c("MR", "CE", "GD", "PD"),
weight = 1,
range = NULL
)
type |
Objective type, one of |
measure |
Distance measure used to compute the distance between two
individuals, one of |
weight |
Weight assigned to the objective when maximizing a weighted index. Defaults to 1.0. |
range |
Normalization range [l,u] of the objective when maximizing a weighted
index. By default the range is not set ( |
Core Hunter objective of class chobj
with elements
type
Objective type.
meas
Distance measure (if applicable).
weight
Assigned weight.
range
Normalization range (if specified).
getNormalizationRanges
, setRange
objective()
objective(meas = "PD")
objective("EE", "GD")
objective("HE")
objective("EN", "MR", range = c(0.150, 0.300))
objective("AN", "MR", weight = 0.5, range = c(0.150, 0.300))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.