SelectSTournament | R Documentation |
SelectSTournament()
implements selection
through a stochastic tournament between
lF$TournamentSize()
randomly selected genes. A gene wins a tournament
with a probability proportional to its fitness.
The default of lF$TournamentSize()
is 2
.
A tournament
with 2 participants has the least selection pressure.
lF$TournamentSize()
must be less
than the population size.
SelectSTournament(fit, lF, size = 1)
fit |
Fitness vector. |
lF |
Local configuration. |
size |
Number of selected genes. Default: 1. |
The index vector of the selected genes.
Other Selection Functions:
SelectDuel()
,
SelectLRSelective()
,
SelectLinearRankTSR()
,
SelectPropFit()
,
SelectPropFitDiff()
,
SelectPropFitDiffM()
,
SelectPropFitDiffOnln()
,
SelectPropFitM()
,
SelectPropFitOnln()
,
SelectSUS()
,
SelectTournament()
,
SelectUniform()
,
SelectUniformP()
fit<-sample(10, 15, replace=TRUE)
SelectSTournament(fit, NewlFselectGenes())
SelectSTournament(fit, NewlFselectGenes(), length(fit))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.