Re: Two styles
- To: mathgroup at smc.vnet.net
- Subject: [mg30363] Re: [mg30315] Two styles
- From: BobHanlon at aol.com
- Date: Sun, 12 Aug 2001 02:29:52 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 2001/8/11 3:52:05 AM, syftech at saad.org.il writes:
>Maybe someone can tell me how to plot two series, using "MultipleListPlot"
>with two different colours and two different line thickness, with no symbols
>on the lines.
>
Needs["Graphics`MultipleListPlot`"];
(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,
PlotJoined -> True,
SymbolShape -> None,
PlotStyle -> {
{AbsoluteThickness[2], RGBColor[1, 0, 0]},
{AbsoluteThickness[3], RGBColor[0, 0, 1]}}];
Bob Hanlon
Chantilly, VA USA