Home > Archive > Mathematica > July 2007 > Frames and Axes
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Flurchick, Kenneth M 2007-07-09, 8:13 am |
| GentleBeings
Sorry for the earlier post
I am using Mathematica 6.0 Windows XP[color=darkred]
>
> 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-
| |
|
|
Hi Kenneth,
works for me, version 6.0 XP. Did you get any error messages?
Daniel
Flurchick, Kenneth M wrote:
> GentleBeings
>
> Sorry for the earlier post
> I am using Mathematica 6.0 Windows XP
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
[color=darkred]
| |
| Jean-Marc Gulliet 2007-07-10, 8:13 am |
| Flurchick, Kenneth M wrote:[color=darkred]
> GentleBeings
>
> Sorry for the earlier post
> I am using Mathematica 6.0 Windows XP
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
| |
| Xerxes 2007-07-31, 8:15 am |
| On Jul 10, 12:21 pm, Jean-Marc Gulliet <jeanmarc.gull...@gmail.com>
wrote:
> Out[4]= "6.0 for Microsoft Windows (32-bit) (April 20, 2007)"
Hi All,
I confirm this bug with this version. I'd also note
that it only occurs when the Axis is sufficiently
close to the edge of the Frame. I tried making tiny
variations of the axis location and found that it
stopped displaying around 1/12 scaled. Seems
like an automatic heuristic that's overstepping its
authority.
No axis:
Plot[x, {x, 0, 1}, Frame -> True, Axes -> True, AxesOrigin -> {0.0833,
0}]
Shows axis:
Plot[x, {x, 0, 1}, Frame -> True, Axes -> True, AxesOrigin -> {0.0834,
0}]
Saul Cohen
|
|
|
|
|