Re: RegionPlot ignores the AxesLabel Option?
- To: mathgroup at smc.vnet.net
- Subject: [mg83334] Re: RegionPlot ignores the AxesLabel Option?
- From: Thomas E Burton <tburton at brahea.com>
- Date: Sat, 17 Nov 2007 05:35:03 -0500 (EST)
Craig,
I spotted the frame around the plot immediately, but I verified it with
Options[RegionPlot]
which shows that by default Axes are off (False) and Frame is on
(True), which is the reverse of most built-in plotting functions (at
least in prior versions). So you can either specify FrameLabel,
RegionPlot[y <= x^2, {x, -1, 1}, {y, 0, 1}, FrameLabel -> {"x", "y"}]
or turn on Axes
RegionPlot[y <= x^2, {x, -1, 1}, {y, 0, 1}, Frame -> False, Axes ->
True, AxesLabel -> {"x", "y"}]
Tom