| Author |
Comment/Response |
Bill Simpson
|
10/29/12 12:50pm
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]= <graphic snipped>
URL: , |
|