I have a factor in R, with an NA level.
set.seed(1)
x <- sample(c(1, 2, NA), 25, replace=TRUE)
x <- factor(x, exclude = NULL)
> x
[1] 1 2 2 <NA> 1 <NA> <NA> 2 2 1 1
[12] 1 <NA> 2 <NA> 2 <NA> <NA> 2 <NA> <NA> 1
[23] 2 1 1
Levels: 1 2 <NA>
How do I subset that factor by the <NA> level? Both methods I tried did not work.
> x[is.na(x)]
factor(0)
Levels: 1 2 <NA>
> x[x=='<NA>']
factor(0)
Levels: 1 2 <NA>
?factorhas: "Warning: There are some anomalies associated with factors that have ‘NA’ as a level. It is suggested to use them sparingly, e.g., only for tabulation purposes." – Joshua Ulrich Jan 26 at 16:36