The Game of Life is a ‘cellular automaton’, and was invented by Cambridge mathematician John Conway.
This ‘package’ is an simple example of this game.
To complete installation of this version, use the followin code.
install.packages('devtools')
devtools::install_github('frahik/GameOfLife-R')
library(GameOfLife)
game_of_life(sandbox_dimension = 500, probability_of_initial_existence = 0.5, delay_time = 30, iterations = 200, path = '')
This is the output on the path folder.
- Francisco Javier Luna-Vázquez (Author, Maintainer)