Hello colleagues... I'm afraid that this is an easy question, but I found no solution yet
Here it goes: I have a list of points, and a list of colors (both of the same length), say:
aList = {{1, 1}, {2, 3}, {4, 5}, {6, 7}};
colorList = {Black, Red, Blue, Yellow};
I want to plot the points using ListPlot, but taking care that each point should have a different color, according to the colorList. So, the point {1,1} should be colored black, the point {2,3} should be red, and so on.... In the actual problem I'm solving, the length of the list is about 30.000, so I need an efficient way to construct the plots...
Thank you very much!!! :-)
Daniel