@@ -122,40 +122,22 @@ class Resampler(BaseGroupBy[NDFrameT]):
122
122
** kwargs ,
123
123
) -> NDFrameT : ...
124
124
def asfreq (self , fill_value : Scalar | None = ...) -> NDFrameT : ...
125
- def sum (
126
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
127
- ) -> NDFrameT : ...
128
- def prod (
129
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
130
- ) -> NDFrameT : ...
131
- def min (
132
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
133
- ) -> NDFrameT : ...
134
- def max (
135
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
136
- ) -> NDFrameT : ...
137
- def first (
138
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
139
- ) -> NDFrameT : ...
140
- def last (
141
- self , numeric_only : bool = ..., min_count : int = ..., * args , ** kwargs
142
- ) -> NDFrameT : ...
143
- def median (self , numeric_only : bool = ..., * args , ** kwargs ) -> NDFrameT : ...
144
- def mean (self , numeric_only : bool = ..., * args , ** kwargs ) -> NDFrameT : ...
145
- def std (
146
- self , ddof : int = ..., numeric_only : bool = ..., * args , ** kwargs
147
- ) -> NDFrameT : ...
148
- def var (
149
- self , ddof : int = ..., numeric_only : bool = ..., * args , ** kwargs
150
- ) -> NDFrameT : ...
151
- def sem (
152
- self , ddof : int = ..., numeric_only : bool = ..., * args , ** kwargs
153
- ) -> NDFrameT : ...
154
- def ohlc (self , * args , ** kwargs ) -> DataFrame : ...
125
+ def sum (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
126
+ def prod (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
127
+ def min (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
128
+ def max (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
129
+ def first (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
130
+ def last (self , numeric_only : bool = ..., min_count : int = ...) -> NDFrameT : ...
131
+ def median (self , numeric_only : bool = ...) -> NDFrameT : ...
132
+ def mean (self , numeric_only : bool = ...) -> NDFrameT : ...
133
+ def std (self , ddof : int = ..., numeric_only : bool = ...) -> NDFrameT : ...
134
+ def var (self , ddof : int = ..., numeric_only : bool = ...) -> NDFrameT : ...
135
+ def sem (self , ddof : int = ..., numeric_only : bool = ...) -> NDFrameT : ...
136
+ def ohlc (self ) -> DataFrame : ...
155
137
@overload
156
- def nunique (self : Resampler [Series ], * args , ** kwargs ) -> Series [int ]: ...
138
+ def nunique (self : Resampler [Series ]) -> Series [int ]: ...
157
139
@overload
158
- def nunique (self : Resampler [DataFrame ], * args , ** kwargs ) -> DataFrame : ...
140
+ def nunique (self : Resampler [DataFrame ]) -> DataFrame : ...
159
141
def size (self ) -> Series [int ]: ...
160
142
@overload
161
143
def count (self : Resampler [Series ]) -> Series [int ]: ...
0 commit comments