Learn R Programming

⚠️There's a newer version (3.2.4) of this package.Take me there.

GA

An R package for stochastic optimisation using Genetic Algorithms.

The GA package provides a flexible general-purpose set of tools for implementing genetic algorithms search in both the continuous and discrete case, whether constrained or not. Users can easily define their own objective function depending on the problem at hand. Several genetic operators are available and can be combined to explore the best settings for the current task. Furthermore, users can define new genetic operators and easily evaluate their performances. Local search using general-purpose optimisation algorithms can be applied stochastically to exploit interesting regions. GAs can be run sequentially or in parallel, using an explicit master-slave parallelisation or a coarse-grain islands approach.

Installation

You can install the released version of GA from CRAN:

install.packages("GA")

or the development version from GitHub:

# install.packages("devtools")
devtools::install_github("luca-scr/GA", build = TRUE, build_opts = c("--no-resave-data", "--no-manual"))

Usage

Usage of the main functions and several examples are included in the papers shown in the references section below.

For an intro see the vignette A quick tour of GA, which is available as

vignette("GA")

The vignette is also available in the Get Started section on the GitHub web page of the package at http://luca-scr.github.io/GA/.

References

Scrucca, L. (2013) GA: A Package for Genetic Algorithms in R. Journal of Statistical Software, 53(4), 1-37. https://www.jstatsoft.org/article/view/v053i0

Scrucca, L. (2017) On some extensions to GA package: hybrid optimisation, parallelisation and islands evolution. The R Journal, 9(1), 187–206. https://journal.r-project.org/archive/2017/RJ-2017-008/

Copy Link

Version

Install

install.packages('GA')

Monthly Downloads

8,103

Version

3.2.1

License

GPL (>= 2)

Maintainer

Luca Scrucca

Last Published

April 21st, 2021

Functions in GA (3.2.1)

GA-internal

Internal GA functions
de

Differential Evolution via Genetic Algorithms
gaControl

A function for setting or retrieving defaults genetic operators
binary2decimal

Binary encoding of decimal numbers and vice versa.
binary2gray

Gray encoding for binary strings
gaMonitor

Monitor genetic algorithm evolution
GA-package

Genetic Algorithms
de-class

Class "de"
ga-class

Class "ga"
ga

Genetic Algorithms
numericOrNA-class

Virtual Class "numericOrNA" - Simple Class for sub-assignment Values
ga_Crossover

Crossover operators in genetic algorithms
gaSummary

Summarize genetic algorithm evolution
ga_Selection

Selection operators in genetic algorithms
summary.gaisl-method

Summary for Islands Genetic Algorithms
summary.ga-method

Summary for Genetic Algorithms
ga_pmutation

Variable mutation probability in genetic algorithms
palettes

Colours palettes
ga_Mutation

Mutation operators in genetic algorithms
plot.gaisl-method

Plot of Islands Genetic Algorithm search path
ga_Population

Population initialization in genetic algorithms
gaisl-class

Class "gaisl"
summary.de-method

Summary for Differential Evolution
plot.ga-method

Plot of Genetic Algorithm search path
persp3D

Perspective plot with colour levels
plot.de-method

Plot of Differential Evolution search path
parNames-methods

gaisl

Islands Genetic Algorithms