Re: ListPlot with little plus signs instead?
- To: mathgroup at smc.vnet.net
- Subject: [mg8172] Re: ListPlot with little plus signs instead?
- From: "Seth J. Chandler" <SChandler at uh.edu>
- Date: Mon, 18 Aug 1997 03:06:55 -0400
- Organization: University of Houston
- Sender: owner-wri-mathgroup at wolfram.com
The key here is to recognize that ListPlot creates a Mathematica Graphics expression containing a lot of Point expressions as arguments. Each of these Point expressions has a List of coordinates as its one argument. We can thus use rule replacement as follows: Show[ListPlot[Table[i^2,{i,1,4}]]/.Point[a_]->Text["+",a,{0,0}]] 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. > > Mark