While plotting a table using plot(table), I am not able to suppress the 
axes with axes = FALSE. Am I missing something or is it a bug?

For example:

> x <- c(rep(0, 7), rep(1, 4), rep(5, 3), rep(6, 4), rep(8, 10))
> table(x)

> plot(table(x), axes = FALSE)                  #does not suppress the 
axes
> plot(table(x), frame.plot= FALSE, axes = FASLE)   #deliberate spelling 
mistake does the job :)
> plot.default(table(x), type = "h", lwd= 10, axes= FALSE)  #this works
>

> version
         _ 
platform i386-pc-mingw32
arch     i386 
os       mingw32 
system   i386, mingw32 
status 
major    1 
minor    6.2 
year     2003 
month    01 
day      10 
language R 
>
        [[alternate HTML version deleted]]

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

Reply via email to