Skip to content
Prev 42470 / 398506 Next

help on rmeta

On Tue, 6 Jan 2004, Francesca Buffa wrote:

            
You don't want to change xlim, which has nothing to do with the axis -- it
specifies how wide the plot is.  The solution is to specify xaxt="n", as
the help page says

    xaxt: use '"n"' for no x-axis (to add a customised one)

You will get a metaplot with no x-axis, and you can then use
axis(1, at=, labels=) to put your own axis on.  It turns out to be quite
hard to get good automatic tick marks and axis range for these plots,
since pretty() isn't designed for log scales and tends to overextend the
left end of the axis.

	-thomas