This is not supported via nullable booleans; however you can do the following to identify NAs
var boolVals = e.Evaluate("a <- c(0,1,NA,1)").AsLogical().ToArray(); var missingValuesAt = e.Evaluate("which(is.na(a))").AsInteger().ToArray();