Open PavelBal opened 8 months ago
In R, NA is weirdly a boolean:
NA
> typeof(NA) [1] "logical"
When passed to rSharp, its values are interpreted as TRUE. We might want to change it.
TRUE
That should be done by R code I guess? Or are you proposing that NA becomes false
false
This should be discussed with Michael. Not V1.
In R,
NA
is weirdly a boolean:When passed to rSharp, its values are interpreted as
TRUE
. We might want to change it.