Re: MultipleListPlot
- To: mathgroup at smc.vnet.net
- Subject: [mg51020] Re: [mg50965] MultipleListPlot
- From: Tomas Garza <tgarza01 at prodigy.net.mx>
- Date: Fri, 1 Oct 2004 04:49:55 -0400 (EDT)
- References: <200409300852.EAA26469@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
It may be done in a slightly elaborated way (I agree with David Park in that
MultipleListPlot is not an easy to handle function). Take the example in the
Help Browser:
In[1]:=
<< "Graphics`MultipleListPlot`"
In[2]:=
gr1 = MultipleListPlot[{2, {1.5, 3.2}, {2.5, ErrorBar[0.3]},
{{4.4, 5.2}, ErrorBar[{-0.5, 0.3}]}, {{5.5, 2.1},
ErrorBar[{-0.4, 0.3}, {-0.2, 0.5}]}}, PlotRange -> All,
Frame -> True];
Now take the points in the example and plot them with ListPlot, with the
adequate options, say
In[3]:=
lst = {{1, 2}, {1.5, 3.2}, {3, 2.5}, {4.4, 5.2}, {5.5, 2.1},
{-0.2, 0.5}};
In[4]:=
a = ListPlot[lst, PlotStyle -> {Hue[1], PointSize[0.015]}];
Now Show the two plots together
In[5]:=
Show[a, gr1]
This way you have control over both color and size of the dots.
Tomas Garza
Mexico City
----- Original Message -----
From: "Flurchick, Kenneth M" <FLURCHICKK at MAIL.ECU.EDU>
To: mathgroup at smc.vnet.net
Subject: [mg51020] [mg50965] MultipleListPlot
> GentleBeings,
> How do I change the point size for a dot in the multiple list plot with
error bars
> the PlotStyle option does not seem to do this and I cannot construct a
filled circle
> from the regularPolygon MakeSymbol option
> This is really confusing
> kenf
>
>