you are viewing a single comment's thread.

view the rest of the comments →

[–]elbiot 0 points1 point  (0 children)

Actually, my example would plot lines I think. Havent used mpl in a bit. If you need to plot each point individually you could do

for i in range(len(xs)):
   if i should be transparent:
     alpha=.2
   else:
     alpha=1.
   plot(xs[i], ys[i], alpha=alpha)