MathGroup Archive 1997

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: ListPlot with little plus signs instead?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg8161] Re: [mg8123] ListPlot with little plus signs instead?
  • From: Allan Hayes <hay at haystack.demon.co.uk>
  • Date: Sat, 16 Aug 1997 11:51:05 -0400
  • Sender: owner-wri-mathgroup at wolfram.com

Mark Evans <evans at gte.net>
in [mg8123] ListPlot with little plus signs instead?
writes

> How can one call ListPlot in such a way that the points are shown 
> as small plus signs instead of circular blobs?

Mark:

Three ideas:

data =Table[{x,Random[]},{x,10}];

1.	Show[Graphics[Text["+",#]&/@data]]

2.	lp =ListPlot[data,PlotStyle->Hue[0]]
	Show[lp/.Point[p_]:> Text["+",p]	]			 
					

3.	<<Graphics`MultipleListPlot`
	MultipleListPlot[data,
		SymbolShape->MakeSymbol[
			{Line[{{-1,0},{1,0}}],Line[{{0,-1},{0,1}}]}],
		SymbolStyle ->{{Hue[0],Thickness[.001]}}
	]
Allan

Allan Hayes
hay at haystack.demon.co.uk
http://www.haystack.demon.co.uk/training.html
voice:+44 (0)116 2714198
fax: +44 (0)116 2718642
Leicester,  UK




  • Prev by Date: Re: Threading objects of unequal length
  • Next by Date: Forcing 'Plus' to format nicely
  • Previous by thread: Re: ListPlot with little plus signs instead?
  • Next by thread: Re: ListPlot with little plus signs instead?