Gavin Simpson wrote:
> 
>> PS what's the right way to get integer labels?
> 
> Do them by hand, if they are (numeric) integers
> 
>> plot(x,y, axes = FALSE)
>> axis(2)
>> axis(1, at = x)
>> box()
> 
> You could try writing your own Axis.integer function if doing the extra
> steps is a pain - something like:
> 
> Axis.integer <- function(x = NULL, at = NULL, ..., side, labels = NULL) 
> {
>     at <- unique(x)
>     labels <- as.character(at)
>     axis(side = side, at = unique(x), labels = labels, ...)
> }
> 
> which works in these case,
> 
> y2 <- runif(3)
> plot(x, y)
> plot(x, y2)
> 
> But is far from bullet proof and is not guaranteed to work in all
> situations.
> 
> HTH
> 

Thanks Gavin, I'll give that a try.


-- 
View this message in context: 
http://www.nabble.com/Why-does-plot%28%29-ignore-the-data-type-for-axis-labels--tp15562325p15574997.html
Sent from the R help mailing list archive at Nabble.com.

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to