[R] how to make a plot without any axis-labeling
Andrew C. Ward
s195404 at student.uq.edu.au
Mon Aug 4 01:24:43 CEST 2003
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 of Queensland
Brisbane Qld 4072 Australia
andreww at cheque.uq.edu.au
Quoting Michael Kirschbaum <emkiba at gmx.de>:
> 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 deleted]]
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
>
More information about the R-help
mailing list