RE: Labeling Axes on 2-D graphs
- To: mathgroup at smc.vnet.net
- Subject: [mg45231] RE: [mg45224] Labeling Axes on 2-D graphs
- From: "David Park" <djmp at earthlink.net>
- Date: Tue, 23 Dec 2003 05:13:26 -0500 (EST)
- Sender: owner-wri-mathgroup at wolfram.com
Mark,
You could use a two-sided Frame.
Plot[Sin[x], {x, 0, 4},
Frame -> {True, True, False, False},
FrameLabel -> {x, y}];
Or maybe a regular Frame would look better.
David Park
djmp at earthlink.net
http://home.earthlink.net/~djmp/
From: Mark Coleman [mailto:mark at markscoleman.com]
To: mathgroup at smc.vnet.net
Greetings,
When using the Plot and ListPlot commands with the AxesLabels option,
Mathematica will place the labels at the end of the axes by default (for 2-D
graphics). Is there a way to have the label appear below or next to the
center of the axes?
Thanks,
-Mark