MathGroup Archive 1997

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

Search the Archive

RE: ListPlot with little plus s

  • To: mathgroup at smc.vnet.net
  • Subject: [mg8162] RE: [mg8123] ListPlot with little plus s
  • From: Ersek_Ted%PAX1A at mr.nawcad.navy.mil
  • Date: Sat, 16 Aug 1997 11:51:06 -0400
  • Sender: owner-wri-mathgroup at wolfram.com


Mark Evans wrote:

|  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.

Mark,

You missed a Standard Package.
Check the book for Standard Packages (page 191).
My code below is a variation of the code in the book.


In[1]:=   lst=Table[Random[], {12}];

In[2]:=   <<Graphics`MultipleListPlot`

In[3]:=   MultipleListPlot[ lst, SymbolShape->MakeSymbol[{
               Line[{{1.5, 0}, {-1.5, 0}}], Line[{{0, -1.5}, {0, 1.5}}]
               }]]

Out[3]=       -Graphics-    (****  Type of graph you want.  *****)


 ----------------------------------------------------
     Ted Ersek



  • Prev by Date: Re: UnsameQ implementation
  • Next by Date: RE: Sorting Eigenvalues/EigenVe
  • Previous by thread: Plot
  • Next by thread: RE: Sorting Eigenvalues/EigenVe