I have the following example:
x = {1, 2, 3, 4}
y = {{1, 2, 3, 4}, {2, 3, 4, 5}, {3, 4, 5, 6}, {4, 5, 6, 7}}
Now I can plot:
ListPlot[{Transpose[{x, y[[1]]}], Transpose[{x, y[[2]]}],
Transpose[{x, y[[3]]}], Transpose[{x, y[[4]]}]}]
How can this be simplified?


Mapto avoid typing the same thing four times?? – Szabolcs May 27 '16 at 13:32Map[(Transpose[{x, #}]) &, y]? – mrz May 27 '16 at 13:32Transpose[{x,#}]& /@ yif you find that more readable. – Szabolcs May 27 '16 at 13:33xuse the default:ListPlot[y]– Bob Hanlon May 27 '16 at 17:27