MathGroup Archive 2001

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

Search the Archive

Re: Re: Point order

  • To: mathgroup at smc.vnet.net
  • Subject: [mg30472] Re: [mg30462] Re: Point order
  • From: BobHanlon at aol.com
  • Date: Thu, 23 Aug 2001 02:15:36 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/8/22 2:21:51 AM, auhb3 at cz3.nus.edu.sg writes:

>i'd like to ask if i can make the dots for ListPlot bigger, or preferably
>change it to other symbols or shapes?
>desperately needing help

Needs["Graphics`MultipleListPlot`"];
Needs["Graphics`Colors`"];

data = Table[Sin[x], {x, 0, 2Pi, Pi/8}];

symbolSize = 4;

ListPlot[data, PlotStyle -> {Blue, AbsolutePointSize[symbolSize]}];

MultipleListPlot[data, SymbolShape -> PlotSymbol[Star, symbolSize], 
    SymbolStyle -> Blue];

You can  use Box, Diamond, Star, Triangle, or make your own symbol.  See 
on-line help for MultipleListPlot.


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Optica-GratingSurface
  • Next by Date: Fitting to a square wave
  • Previous by thread: Re: Re: Point order
  • Next by thread: Can compile to be Exe file?