Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

summary.rbga

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)

genalg

R Based Genetic Algorithm

v0.2.0
GPL-2
Authors
Egon Willighagen and Michel Ballings
Initial release
2015-03-15

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.