Re: MultipleListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg46259] Re: MultipleListPlot
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Thu, 12 Feb 2004 22:46:20 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <c0ft84$c73$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Needs["Graphics`MultipleListPlot`"]
data1 = Table[Sin[x], {x, 0, Pi, Pi/64}];
data2 = Table[Cos[x], {x, 0, Pi, Pi/64}];
MultipleListPlot[data1, data2,
SymbolShape -> {{PointSize[0.1], Point[#]} &, {Text["x", #]} &}]
Regards
Jens
Naima Khelfaoui wrote:
>
> I used MultipleListPlot to plot many list , I want to change the size of
> points but I don't know how, I used Plotsize but it don't change any thing.
>
> Thanking you.