Re: How to plot strings s_i at point {x_i,y_i} ?
- To: mathgroup at smc.vnet.net
- Subject: [mg95040] Re: [mg95020] How to plot strings s_i at point {x_i,y_i} ?
- From: "Scot T. Martin" <smartin at deas.harvard.edu>
- Date: Sun, 4 Jan 2009 07:32:15 -0500 (EST)
- References: <200901031055.FAA02759@smc.vnet.net>
Try using Text["s1",{x1,y1}] within Graphics[]. Graphics[Text[#3, {#1, #2}] & @@@ {{x1, y1, s1}, {x2, y2, s2}}] On Sat, 3 Jan 2009, John wrote: > Hello! > > I have a set of triplets {{x1,y1,s1},{x2,y2,s2},...}. I would like to > make a plot where the third element of each triplet, a string, is > plotted at the coordinate given by the the first two elements of the > triplet. How can I acheive this? Of course I don't mind reorganizing > the format of the data. It seems to me that PlotMarkers is not willing > to help me, since I want different markes within the same data set. > > Regards, > John > >