Displaying 1 result from an estimated 1 matches for "r47593".
Did you mean:
47593
2009 Jun 20
1
Flag '#' in sprintf() format string "%#x"?
...it of FYI, but also a question.
Is flag '#' in sprintf() format string "%#x" fully supported across
platforms? Can that be assumed? I discovered thanks to the r-forge
service, that this was not the case for OSX with "R version 2.9.0
Under development (unstable) (2009-01-13 r47593)", where R CMD check
reports the following:
Error in sprintf("%#x", values) :
use format %d, %i, %x or %X for integer objects
where values <- as.integer(1:5). Note it works well on other
platforms; I don't know about newer R version on OSX. Should I
consider this a glitc...