MathGroup Archive 2005

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

Search the Archive

RE: MultipleListPlot Prolem

  • To: mathgroup at smc.vnet.net
  • Subject: [mg55710] RE: [mg55696] MultipleListPlot Prolem
  • From: "David Park" <djmp at earthlink.net>
  • Date: Mon, 4 Apr 2005 00:59:15 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

How about...

<< Graphics`MultipleListPlot`
p = {{2, 4}, {4, 6, 7, 8}, {1, 2, 8, 9, 5, 6, 23}};

MultipleListPlot[Sequence @@ p]

David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/ 

From: konstantpi at mail15.com [mailto:konstantpi at mail15.com]
To: mathgroup at smc.vnet.net

i have a trouble with MultipleListPlot
after reading the package:
<< Graphics`MultipleListPlot`
MultipleListPlot[{2, 4}, {4, 6, 7, 8}, {1, 2, 8, 9, 5, 6, 23}]
will draw the 3 lists one over the other.
but suppose i have a big lists and want to assign it to a variable :
p={{2, 4}, {4, 6, 7, 8}, {1, 2, 8, 9, 5, 6, 23}}
MultipleListPlot[p]  will give an error
this is as MultipleListPlot[{{2, 4}, {4, 6, 7, 8}, {1, 2, 8, 9, 5, 6, 23}}]
i could not get rid of the outside enclosing {...}
also:
Map[MultipleListPlot, p]
will plot the three lists but separately and not one over the other.
thanks
konst.





  • Prev by Date: Re: MultipleListPlot Prolem
  • Next by Date: Re: MultipleListPlot Prolem
  • Previous by thread: Re: MultipleListPlot Prolem
  • Next by thread: Re: MultipleListPlot Prolem