This shouldn't be this hard, but I am stuck. I have a table of the following form:
| 1 | 2 | 3
------------------------------------
TypeA | 3213 | 2121 | 43
TypeB | 31321 | 321 | 10
TypeC | 332 | 11 | 9
And I want to generate a line plot, with three lines: one for each Type, where x-coordinates are "1,2,3", and y-coordinates are the numbers (3213, ...). I am following the steps in here, but don't know how to iterate over the first column.