In Mathematica 7, I entered
u = {1, 2, 3, 5, 7, 8, 10, 11}; v = {1, 2, 4, 5, 4, 3, 1, 1}; w =
Transpose[{u, v}]; ListPlot[w, PlotRange -> All,
AspectRatio -> 1/1]
I wanted this to display a dot at each of the 8 points of w,
{{1, 1}, {2, 2}, {3, 4}, {5, 5}, {7, 4}, {8, 3}, {10, 1}...