Re: List plot with + possible?
- To: mathgroup at smc.vnet.net
- Subject: [mg7561] Re: [mg7526] List plot with + possible?
- From: jpk at max.mpae.gwdg.de
- Date: Sun, 15 Jun 1997 16:32:21 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
Hi Sudeep,
You can use the Graphics`MultipleListPlot package and the SymbolShape
option. Alternatively You may do the following :
Make some data
data=Table[{x,Sin[x]},{x,0,Pi,Pi/20}];
Make a ListPlot with points but don't show it:
pic=ListPlot[data,DisplayFunction->Identity];
Replace the Point[coord] with Text of Your favorite symbol
Show[pic /. Point[p_]:> Text["x",p], DisplayFunction->$DisplayFunction]
The Mma 3.0 Symbols like \[Square], \[FilledDiamond] .. may be usefull as
first arguments in the Text[] primitive.
Hope that helps
Jens