I have the following data:

> dataset[2,"Sample.227"]
[1]    NaN
1558 Levels: -0.000 -0.001 -0.002 -0.003 -0.004 -0.005 -0.006 -0.007 -0.008-
0.009 ...  2.000


However, I'm not sure why this expression is coming back as FALSE:

> dataset[2,"Sample.227"]=="NaN"
[1] FALSE

Similarly:

> dataset[2,"Sample.227"]==NaN
[1] NA


It seems that since "NaN" is represented as a character, this expression
=="NaN" should be TRUE, but it's returning as FALSE.

Thanks,
Andrew

        [[alternative HTML version deleted]]

______________________________________________
R-help@stat.math.ethz.ch 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