I am working on developing automation in python for multi-line graphs.
Below is an example of what I would create manually in excel.

My current code is as follows:
plt = pyplot
plt.plot(channel_list, udp_dl_values, label="UDP DL")
plt.plot(channel_list, tcp_dl_values, label="TCP DL")
plt.plot(channel_list, udp_ul_values, label="UDP UL")
plt.plot(channel_list, tcp_ul_values, label="TCP UL")
plt.grid()
Was wondering if I could create the above using scripts?
Thanks,
Parth
From http://matplotlib.org/users/screenshots.html#table-demo
Edit:
This example can be simplified by using the default matplotlib color cycle (blue, red, green, ….) and line plots as follows: