MathGroup Archive 2002

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

Search the Archive

Re: Can I do MultipleListPlot with Color?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg33850] Re: [mg33844] Can I do MultipleListPlot with Color?
  • From: BobHanlon at aol.com
  • Date: Sat, 20 Apr 2002 02:49:36 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 4/19/02 2:36:49 AM, mlists at soim.com writes:

>I must plot several series of points. Can I use color in MultipleListPlot?
>

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

list1 = Table[{x, Sin[2*Pi*x]}, {x, 0, 1, 0.1}]; 
list2 = Table[{x, Cos[2*Pi*x]}, {x, 0, 1, 0.1}]; 

MultipleListPlot[list1, list2, 
SymbolStyle -> {Red, Blue}]; 

MultipleListPlot[list1, list2, 
PlotStyle->{Red,{AbsoluteDashing[{5,5}],Blue}}, 
SymbolStyle -> {Red, Blue}, 
PlotJoined->True]; 


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Problem using NonlinearFit/Regress?
  • Next by Date: How Do You Reduce Multiple Elements in a List?
  • Previous by thread: Re: Can I do MultipleListPlot with Color?
  • Next by thread: Re: Can I do MultipleListPlot with Color?