Skip to content

Want to exclude axis numbering in plot.ca

2 messages · Mark Webb, R. Michael Weylandt

#
plot.ca gives numbers on each axis. How do I stipulate to exclude these. 
Have read the R Documentation plot.ca but see no option to exclude axis 
numbers.
Any suggestions?
#
I don't know what plot.ca is (it's not in base and you gave no package
citation), but the usual way is to add xaxt = "n" to a plot call.
Assuming plot.ca is an appropriately defined generic, this should
work.

E.g.,
layout(1:2)
plot(1:5)
plot(1:5, xaxt = "n")

Michael
On Wed, Oct 26, 2011 at 3:59 AM, Mark Webb <targetlinkmark at gmail.com> wrote: