Re: ListPlot with little plus signs instead?
- To: mathgroup at smc.vnet.net
- Subject: [mg8168] Re: [mg8123] ListPlot with little plus signs instead?
- From: "Sherman.Reed" <sherman.reed at worldnet.att.net>
- Date: Sat, 16 Aug 1997 11:51:12 -0400
- Sender: owner-wri-mathgroup at wolfram.com
Mark, On page 191 of the Mma 3.0 Standard AddOn Packages for MultipleListPlot, a feature is described where one can create a personalized Symbol Shape. It is called, appropriately, SymbolShape->Make Symbol[{line1,line2}] where line1=Line[{{0,2},{0,-2}}] and line2=Line[{{-2,0},{2,0}}]. I used the following to create a plot with only pluses line1=Line[{{0,2},{0,-2}}]; line2=Line[{{-2,0},{2,0}}]; MultipleListPlot[data1,SymbolShape->MakeSymbol[{line1,line2}]]; Sherman C. Reed sherman.reed at worldnet.att.net ---------- > From: Mark Evans <evans at gte.net> To: mathgroup at smc.vnet.net > To: mathgroup at smc.vnet.net > Subject: [mg8168] [mg8123] ListPlot with little plus signs instead? > Date: Monday, August 11, 1997 11:55 PM > > 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. > > Mark > >