Re: adjusting frame size in plot
- To: mathgroup at smc.vnet.net
- Subject: [mg20213] Re: adjusting frame size in plot
- From: Scot Hawkins <shawkins at comp.uark.edu>
- Date: Wed, 6 Oct 1999 21:06:30 -0400
- Organization: The University of Arkansas
- References: <7t8c3g$gd5@smc.vnet.net> <7tcb77$m6f@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Thank you, but this does not solve my problem. To clarify what I want, I have
2 Plots plotted with identical x values, but different scales on the y axis,
say
Plot[Sin[x],{x,0,2Pi},Frame->True];
Plot[20Sin[x],{x,0,2Pi},Frame->True];
However, both plots are plotted with the same dimensions, including the
mismatched tick labels on the y-axis. -0.5 is longer than -20, so the actual
region of the frame is smaller. I want Mathematica to give me both plots so
that the size of the frame is the same, so that I can use a ruler on a
print-out to directly compare points between the two graphs.
With trial and error, I could probably manually resize the PlotRegion:
Plot[Sin[x],{x,0,2Pi},Frame->True,PlotRegion->{{0,1},{0,1}}];
Plot[20Sin[x],{x,0,2Pi},Frame->True,PlotRegion->{{.02,1},{0,1}}];
but there has to be a better method.
Seth Chandler wrote:
> I believe the following option to your Plot or whatever functio may help.
> For concreteness, I am assuming you want all plots to be 400 pixels by 300
> pixels.
>
> DisplayFunction->(Display[$Display,#,ImageSize->{400,300}]&)
>
> Scot wrote in message <7t8c3g$gd5 at smc.vnet.net>...
> >I have 2 near-identical plots, one with a range from 0 to 100 and the
> >other with a range from 0 to 20. As the tick label 100 is longer than
> >20, the corresponding graph has a smaller frame.
> >
> >How can I force the two graphs to have the same frame size using
> >Mathematica 3.0?
> >
> >