Re: Axes and Frame
- To: mathgroup at smc.vnet.net
- Subject: [mg78820] Re: Axes and Frame
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Tue, 10 Jul 2007 06:34:54 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <f6qd8a$97o$1@smc.vnet.net>
Flurchick, Kenneth M wrote:
> GentleBeings
>
> Where did the Axes go?
>
>
> data1={{{1,1},ErrorBar[0.75]},
>
> {{2,2},ErrorBar[0.75]},
>
> {{3,2},ErrorBar[0.75]},
>
> {{4,3},ErrorBar[0.75]},
>
> {{5,2},ErrorBar[0.75]},
>
> {{6,1},ErrorBar[0.75]},
>
> {{7,4},ErrorBar[0.75]},
>
> {{8,1},ErrorBar[0.75]},
>
> {{9,3.5},ErrorBar[0.75]},
>
> {{10,2.5},ErrorBar[0.75]}
>
> };
>
> ErrorListPlot[data1,PlotRange -> {{-1,11},{-1,5}},Frame->True, Axes->True]
On my system, I have got the horizontal axis but not the vertical one.
In[1]:= Needs["ErrorBarPlots`"]
data1 = {{{1, 1}, ErrorBar[0.75]}, {{2, 2}, ErrorBar[0.75]},
{{3, 2}, ErrorBar[0.75]}, {{4, 3}, ErrorBar[0.75]},
{{5, 2}, ErrorBar[0.75]}, {{6, 1}, ErrorBar[0.75]},
{{7, 4}, ErrorBar[0.75]}, {{8, 1}, ErrorBar[0.75]},
{{9, 3.5}, ErrorBar[0.75]}, {{10, 2.5}, ErrorBar[0.75]}};
ErrorListPlot[data1, PlotRange -> {{-1, 11}, {-1, 5}},
Frame -> True,
Axes -> True]
In[4]:= $Version
Out[4]= "6.0 for Microsoft Windows (32-bit) (April 20, 2007)"
Regards,
Jean-Marc