Re: ListPlot with little plus signs instead?
- To: mathgroup at smc.vnet.net
- Subject: [mg8132] Re: [mg8123] ListPlot with little plus signs instead?
- From: Tom Wickham-Jones <twj>
- Date: Fri, 15 Aug 1997 23:41:44 -0400
- Sender: owner-wri-mathgroup at wolfram.com
Mark Evans wrote: > > Here is an easy question, > > How can one call ListPlot in such a way that the points are shown as > small plus signs instead of circular blobs? Crosses (+) make it easier > to distinguish clustered points. I am not talking about error bars > here, just a standard ListPlot. > > I looked at some of the standard packages but nothing jumped out at me. You could use MultipleListPlot. <<Graphics/MultipleListPlot.m list1 = Table[{x, Sin[2 Pi x]}, {x, 0, 1, 0.1}]; MultipleListPlot[list1, SymbolShape -> MakeSymbol[{Line[ {{-2,0},{2,0}}],Line[ {{0,-2},{0,2}}]}]] Tom Wickham-Jones WRI