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