Mark Difford wrote:
> 
>>> I was wondering why the plot() command ignores the datatype when
>>> displaying axis labels...
> 
> plot() doesn't ignore the datatype:
> [...]
> plot(x,y) calls xy.coords(), which recasts x as: x = as.double(x), which
> is fine, since x is (also/primarily) numeric.
> 
> HTH, Mark.
> 
> 

Thanks for the explanation Mark.

If integers are being recast as doubles R is ignoring/overriding the user's
choice of data-type. There may be good reasons for doing that internally
(uniformity, code re-use etc) , but it is not what I'd expect as an end-user
--- neither ?plot nor ?xy.coords seem to mention that coordinates need to be
floating point numbers.

Best regards,
Stiffler
-- 
View this message in context: 
http://www.nabble.com/Why-does-plot%28%29-ignore-the-data-type-for-axis-labels--tp15562325p15576369.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