Deedle
で機能Series.hasNot
のヘルプは言う:Series.hasにバグがありますか?
Returns true when the series does not contains value for the specified key
機能は、次の例では、このように動作していないようです:
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 =()
私は何かが足りないのですか?
Deedleでこのバグが修正されるまでは、私が使用できる回避策で私のコメントを更新しました。 – rmunn