Open RobinHankin opened 6 years ago
But look how base R manages extraction for vectors with an index including NA
:
> (1:3)[c(T,NA,T)]
[1] 1 NA 3
>
that Just Works (tm) but the freegroup
package does not and should not (?) include NA
functionality.