I have a list of data, for example {A_1, A_2, A_3, ...}, where each element is again a big list of data, for example A_i = {p_i_1, p_i_2, ...}.
I want to use Matplotlib to make a list plot of each A_i, say plot_A_i, and then have a functionality to change the displayed plot among plot_A_i. Because each A_i is quite big, I don't want to redraw it every time, but first draw all the plots and then change the displayed one using some kind of widget of Matplotlib. What I have in mind is something like 'Manipulate' of Mathematica. How can I do that?