I have a dictionary titled "fig_dict" and a corresponding dictionary titled "axes_dict". Currently, if I want to plot a particular figure I can just call fig_dict['key_of_interest'].show(). I also have a list of the dictionary keys (both are the same) titled dict_keys.
I would like to cycle through all keys and plot them like this: https://www.timera-energy.com/content/uploads/2014/11/Fwd-Curve-Animation.gif , where each figure is flashed for a certain amount of time and the cycle is repeated.
In my head this looks like:
for current_key in dict_keys:
fig_dict[current_key].animate()
All other stackoverflow questions I can find on this topic don't deal with pre-made figures and don't seem to work. Is there an easy way to do this?