Points conditionnal Coloring
- To: mathgroup at smc.vnet.net
- Subject: [mg118945] Points conditionnal Coloring
- From: Louis-Alexandre <laeh at nyu.edu>
- Date: Tue, 17 May 2011 07:46:47 -0400 (EDT)
Hi, I am trying to plot some points, and color them according to a particular Value. dalist is of that kind : {{x1,y1,z1},{x2,y2,z2},... ,{xN, yN,zN}} So I need a simple 2D plot where the color of the point will depend on the z value. What I have : Graphics[{Hue[#3], Point[{#1, #2}]} & @@@ dalist, Axes -> {True, True}] Obviously this Hue[] is wrong. Many thanks fo any help you could provide,