So I have a data frame that looks something like this
Col1 Col2 Col3
------------------
foo x11 y11
foo x12 y12
foo x13 y13
bar x21 y21
bar x22 y22
bar x23 y23
baz x31 y31
baz x32 y32
baz x33 y33
I'd like to plot one curve for each unique value in Column 1, and overlay them on the same plot, where the points on each curve are specified by the (numeric) (x, y) coordinates in Columns 2 and 3. I don't know what the values are in advance, and they don't have numeric labels. How can I do this?
(Believe it or not, I can't find the answer to this question anywhere on the Internet)
Thanks!