If we take the example
ListPlot[{{1.5, 2}, {1, -2}, {2.5, 6}, {3, -5}} -> {"a", "b", "c", "d"}]
I would to see the labels correctly correspond to the 2D points, but unfortunately this does not happen. What should I do to obtain this?
If we take the example
ListPlot[{{1.5, 2}, {1, -2}, {2.5, 6}, {3, -5}} -> {"a", "b", "c", "d"}]
I would to see the labels correctly correspond to the 2D points, but unfortunately this does not happen. What should I do to obtain this?
ListPlot[MapThread[ Labeled, {{{1.5, 2}, {1, -2}, {2.5, 6}, {3, -5}}, {"a", "b", "c", "d"}}]]– Kuba Aug 30 '18 at 08:08