I have a simple line plot that I would like to animate.
An array with the number of iterations and the associated array with a value associated with the current iteration.
iters = [x for x in 1:100];
vals = rand(100);
I simply want to animate the development of vals output at each iteration - tiers.
How can I do this in Julia?