Hello,
I am tryting to draw multiple plots with matplot lib. plot_general_list is a list of lists - something like
plot_list = [list1, list2, list3, list4...]. So if there are 10 lists in plot_list, I would like to get 10 plots (with data of those lists).
I would like the data in those lists to be plotted in separate plots. I tried this...
... but I get no figure drawn. matplotlib works fine since I tried the basic sample (plot[1,2,3,4]) and it works fine.
What did I miss in my code? Thank you!
JC
I am tryting to draw multiple plots with matplot lib. plot_general_list is a list of lists - something like
plot_list = [list1, list2, list3, list4...]. So if there are 10 lists in plot_list, I would like to get 10 plots (with data of those lists).
I would like the data in those lists to be plotted in separate plots. I tried this...
1 2 3 4 |
for i in range ( len (plot_list)): plt.figure() plt.plot(plot_list[i]) plt.show |
What did I miss in my code? Thank you!
JC