[R] Reporting a bug in as function

Duncan Murdoch murdoch@dunc@n @end|ng |rom gm@||@com
Tue Mar 3 18:43:13 CET 2020


On 02/03/2020 9:25 a.m., Agha Babar Khan wrote:
> Dear R,
> 
> Run following commands and you will find last two command result is same.
> 
> n1 <- 1
> print(n1)
> typeof(n1)
> is.integer(n1)
> is.numeric(n1)
> 
> n1 <- as.integer(n1)
> print(n1)
> typeof(n1)
> is.integer(n1)
> is.numeric(n1)
> 

Please read the help page for is.numeric.  There's no bug in having 
is.integer(n1) == is.numeric(n1).

Duncan Murdoch



More information about the R-help mailing list