So I have a set of data which has a singular column for x data and multiple columns for y data, of the form.
x_title y_title_1 y_title_2 y_title_3 .... y_title_n
data_x1 data_y2 data_y3 data_y4 data_yn
.... .... .... .... .... ....
I am trying to graph the data, a different plot for each y_data_i, on the same graph.
I am using numpy arrays, matplotlib and scipy. And genfromtxt to read it in. I imagine the best way would be to put each column into an array, so there is an array for y_data_1,y_data_2 and so on. However I have no idea how to do this? I know how to read them in singularly, to a set data, so:
y_data_1=data[0:number_of_rows,1]
However I don't know how to code a way to do it for hundreds of columns.