|
[Date Index]
[Thread Index]
[Author Index]
Re: Re: MultipleListPlot Prolem
MultipleListPlot@@{{2,4},{4,6,7,8},{1,2,8,9,5,6,23}}
Bobby
On Mon, 4 Apr 2005 00:59:09 -0400 (EDT), Chris Chiasson <chris.chiasson at gmail.com> wrote:
> MultipleListPlot is having difficulty figuring out that you want to
> plot multiple lists (I know that sounds dumb...)
> Instead of supplying a list of lists as the argument, as you have done
> with p, supply a sequence of lists.
> p=Sequence[{2,4},{4,6,7,8},{1,2,8,9,5,6,23}]
> MultipleListPlot[p]
>
>
> On Apr 3, 2005 5:51 AM, konstantpi at mail15.com <konstantpi at mail15.com> wrote:
>> 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.
>>
>>
>
>
--
DrBob at bigfoot.com
Prev by Date:
Re: GraphPlot vs. SpringEmbedding
Next by Date:
Re: Front End Memory usage while exporting many graphics
Previous by thread:
Re: MultipleListPlot Prolem
Next by thread:
Re: MultipleListPlot Prolem
|