summary.rbga {genalg} | R Documentation |
R Based Genetic Algorithm Summary Function
Description
Summarizes the genetic algorithm results.
Usage
## S3 method for class 'rbga'
summary(object, echo=FALSE, ...)
Arguments
object |
a rbga object. |
echo |
if true, the summary will be printed to STDOUT as well as returned. |
... |
other options (ignored) |
Examples
evaluate <- function(string=c()) {
returnVal = 1 / sum(string);
returnVal
}
rbga.results = rbga.bin(size=10, mutationChance=0.01, zeroToOneRatio=0.5,
evalFunc=evaluate)
summary(rbga.results)
[Package genalg version 0.2.1 Index]