22
22
["var" , np .float64 (0.5 )],
23
23
["std" , np .float64 (0.5 ** 0.5 )],
24
24
["skew" , pd .NA ],
25
+ ["kurt" , pd .NA ],
25
26
["any" , True ],
26
27
["all" , True ],
27
28
],
@@ -44,6 +45,7 @@ def test_series_reductions(op, expected):
44
45
["var" , Series ([0.5 ], index = ["a" ], dtype = "Float64" )],
45
46
["std" , Series ([0.5 ** 0.5 ], index = ["a" ], dtype = "Float64" )],
46
47
["skew" , Series ([pd .NA ], index = ["a" ], dtype = "Float64" )],
48
+ ["kurt" , Series ([pd .NA ], index = ["a" ], dtype = "Float64" )],
47
49
["any" , Series ([True ], index = ["a" ], dtype = "boolean" )],
48
50
["all" , Series ([True ], index = ["a" ], dtype = "boolean" )],
49
51
],
@@ -95,6 +97,7 @@ def test_groupby_reductions(op, expected):
95
97
["var" , Series ([2 , 2 ], index = ["B" , "C" ], dtype = "Float64" )],
96
98
["std" , Series ([2 ** 0.5 , 2 ** 0.5 ], index = ["B" , "C" ], dtype = "Float64" )],
97
99
["skew" , Series ([pd .NA , pd .NA ], index = ["B" , "C" ], dtype = "Float64" )],
100
+ ["kurt" , Series ([pd .NA , pd .NA ], index = ["B" , "C" ], dtype = "Float64" )],
98
101
["any" , Series ([True , True , True ], index = ["A" , "B" , "C" ], dtype = "boolean" )],
99
102
["all" , Series ([True , True , True ], index = ["A" , "B" , "C" ], dtype = "boolean" )],
100
103
],
0 commit comments