A package with functions to generate fractals. It is intended to be use for educational purposes.
To install chaos:
chaos
devtools::install_github("ddiez/chaos")
Plot the logitic map.
library(chaos) x <- logmap() plot_logmap(x)
Plot the mandelbrot set.
z <- mandelbrot(steps = 300) plot_mandelbrot(z)