Is There Genetic Programming Code R

I'm interested in evolutionary algorithms. I checked the genetic algorithms with R, but did someone try with genetic programming? Do you know if the code is written somewhere in R.

+5
source share
3 answers

I don't know anything about CRAN for genetic programming in particular, although there is some work on this issue. In particular, check out the RGP package , which is still under development.

Otherwise, check out the RFreak package , which is a wrapper for the "Free Evolutionary Algorithm Set . "

+11
source

, genalg, GA galgo

+2

New package available:
gramEvol: Grammatical evolution for R

Native R-implementation of grammatical evolution (GE). GE makes it easy to discover programs that can achieve your desired goal. This is achieved through evolutionary optimization of the collection of R expressions generated by the user context grammar (CFG) and cost function.

You can find the vignette here:
Grammar evolution: a tutorial using gramEvol

0
source

All Articles