Skip to content
Prev 13015 / 63424 Next

AS_NUMERIC and as.numeric - Could someone explain?

On Jul 1, 2004, at 6:09 AM, Douglas Bates wrote:

            
Um... are you sure?? For the sake of lots of code I saw I hope you're 
wrong:
Yes:

 > str(as.double(1:10))
  num [1:10] 1 2 3 4 5 6 7 8 9 10
 > str(as.numeric(1:10))
  num [1:10] 1 2 3 4 5 6 7 8 9 10
 > str(1:10)
  int [1:10] 1 2 3 4 5 6 7 8 9 10

And moreover:

 > as.numeric
function (x, ...)
UseMethod("as.double")
<environment: namespace:base>

... admittedly I didn't answer the original question, but I suspect 
that the problem lies somewhere else ...

Simon