[R] how to make a plot without any axis-labeling

2003-08-14 Thread Thomas Unternährer
see ?par and ?plot plot(data[1,], xlab=Xlab, ylab=Ylab) thomas [[alternative HTML version deleted]] __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help

[R] how to make a plot without any axis-labeling

2003-08-03 Thread Michael Kirschbaum
Hi. I got a problem, perhaps someone can help me... every time, when I want to plot data, both axis are labeled by default like data[1,] and data[2,] how can I make a plot without ANY labeling? does anyone know that? thanks for helping Michael [[alternative HTML version

[R] how to make a plot without any axis-labeling

2003-08-03 Thread Paolo Covelli
Hi. I got a problem, perhaps someone can help me... every time, when I want to plot data, both axis are labeled by default like data[1,] and data[2,] how can I make a plot without ANY labeling? does anyone know that? thanks for helping Michael

[R] how to make a plot without any axis-labeling

2003-08-03 Thread Joel Kincaid
compare plot(rnorm(1:10),rnorm(1:10)) with plot(rnorm(1:10),rnorm(1:10),xlab=,ylab=) cheers __ [EMAIL PROTECTED] mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Re: [R] how to make a plot without any axis-labeling

2003-08-03 Thread Andrew C. Ward
Dear Michael, If you want no axes at all, try plot(1:10, 1:10, axes=FALSE) To omit ticks and tick labels try plot(1:10, 1:10, xaxt=n, yaxt=n) To omit axis labels try plot(1:10, 1:10, xlab=, ylab=) Regards, Andrew C. Ward CAPE Centre Department of Chemical Engineering The University

Re: [R] how to make a plot without any axis-labeling

2003-08-03 Thread Ko-Kang Kevin Wang
?plot On Fri, 1 Aug 2003, Michael Kirschbaum wrote: Date: Fri, 1 Aug 2003 00:22:09 +0200 From: Michael Kirschbaum [EMAIL PROTECTED] To: R-Help [EMAIL PROTECTED] Subject: [R] how to make a plot without any axis-labeling Hi. I got a problem, perhaps someone can help me... every time