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
[EMAIL PROTECTED]


Quoting Michael Kirschbaum <[EMAIL PROTECTED]>:

> 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]]
> 
> ______________________________________________
> [EMAIL PROTECTED] mailing list
> https://www.stat.math.ethz.ch/mailman/listinfo/r-help
>

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to