The help for function Series.hasNot
in Deedle
says:
Returns true when the series does not contains value for the specified key
The function does not seem to be working this way in the following example:
let election =
[ "Party A", 304
"Party B", 25
"Party C", 570
"Party Y", 2
"Party Z", 258 ]
|> series
let bhnt =
election
|> Series.hasNot "Party A"
printfn "%A" <| bhnt
// true
// val bhnt : bool = true
// val it : unit = ()
Am I missing something?