| Original Message (ID '91855') By Bill Simpson: |
One straight forward brute force method that you might be able to adapt to your situation:
In[1]:= data = {{1, 2, .5}, {3, 2, .2}, {2, 3, .1}};
Show[Graphics[{PointSize[.05], Map[{Hue[Last[#]], Point[Most[#]]} &, data]}]]
Out[2]= ![]() |
|