@@ -105,9 +105,9 @@ class SeriesGroupBy(GroupBy, Generic[S1]):
105
105
engine_kwargs = ...,
106
106
) -> Series [S1 ]: ...
107
107
def prod (self , numeric_only : bool = ..., min_count : int = ...) -> Series [S1 ]: ...
108
- def sem (self , ddof : int = ...) -> Series [float ]: ...
109
- def std (self , ddof : int = ...) -> Series [float ]: ...
110
- def var (self , ddof : int = ...) -> Series [float ]: ...
108
+ def sem (self , ddof : int = ..., numeric_only : bool = ... ) -> Series [float ]: ...
109
+ def std (self , ddof : int = ..., numeric_only : bool = ... ) -> Series [float ]: ...
110
+ def var (self , ddof : int = ..., numeric_only : bool = ... ) -> Series [float ]: ...
111
111
def tail (self , n : int = ...) -> Series [S1 ]: ...
112
112
def unique (self ) -> Series : ...
113
113
def hist (
@@ -308,7 +308,7 @@ class DataFrameGroupBy(GroupBy):
308
308
numeric_only : bool = ...,
309
309
** kwargs ,
310
310
) -> Series : ...
311
- def std (self , ddof : int = ...) -> DataFrame : ...
311
+ def std (self , ddof : int = ..., numeric_only : bool = ... ) -> DataFrame : ...
312
312
def sum (
313
313
self ,
314
314
numeric_only : bool = ...,
@@ -319,7 +319,7 @@ class DataFrameGroupBy(GroupBy):
319
319
def tail (self , n : int = ...) -> DataFrame : ...
320
320
def take (self , indices : Sequence , axis : AxisType = ..., ** kwargs ) -> DataFrame : ...
321
321
def tshift (self , periods : int , freq = ..., axis : AxisType = ...) -> DataFrame : ...
322
- def var (self , ddof : int = ...) -> DataFrame : ...
322
+ def var (self , ddof : int = ..., numeric_only : bool = ... ) -> DataFrame : ...
323
323
@overload
324
324
def value_counts (
325
325
self ,
0 commit comments