Re: Several colors in MultipleListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg24943] Re: [mg24929] Several colors in MultipleListPlot
- From: BobHanlon at aol.com
- Date: Thu, 24 Aug 2000 05:08:16 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
In a message dated 8/22/2000 4:40:02 PM, helgea at inoc.chalmers.se writes: >Using the Sequence function in MultipleListPlot is convenient when >dealing with many plots. However the command below gives three red plots >instead of one of each color given by the SymbolStyle option. Does >anyone have a solution to this? >MultipleListPlot[Sequence @@ zd[[#]] & /@ {1, 2, 3}, > SymbolStyle -> {Red, Green, Blue}] Needs["Graphics`MultipleListPlot`"]; Needs["Graphics`Colors`"]; zd = Table[2*n^(k/3) + 3, {k, 3}, {n, 10}]; MultipleListPlot[Sequence @@ (zd[[#]] & /@ {1, 2, 3}), SymbolStyle -> {Red, Green, Blue}]; Bob Hanlon