@@ -23,48 +23,37 @@ class GroupBy(Protocol):
2323
2424 """
2525
26- def any (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
27- ...
26+ def any (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
2827
29- def all (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
30- ...
28+ def all (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
3129
32- def min (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
33- ...
30+ def min (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
3431
35- def max (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
36- ...
32+ def max (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
3733
38- def sum (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
39- ...
34+ def sum (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
4035
41- def prod (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
42- ...
36+ def prod (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
4337
44- def median (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
45- ...
38+ def median (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
4639
47- def mean (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame :
48- ...
40+ def mean (self , * , skip_nulls : bool | Scalar = True ) -> DataFrame : ...
4941
5042 def std (
5143 self ,
5244 * ,
5345 correction : float | Scalar = 1 ,
5446 skip_nulls : bool | Scalar = True ,
55- ) -> DataFrame :
56- ...
47+ ) -> DataFrame : ...
5748
5849 def var (
5950 self ,
6051 * ,
6152 correction : float | Scalar = 1 ,
6253 skip_nulls : bool | Scalar = True ,
63- ) -> DataFrame :
64- ...
54+ ) -> DataFrame : ...
6555
66- def size (self ) -> DataFrame :
67- ...
56+ def size (self ) -> DataFrame : ...
6857
6958 def aggregate (self , * aggregation : Aggregation ) -> DataFrame :
7059 """Aggregate columns according to given aggregation function.
@@ -93,36 +82,28 @@ def rename(self, name: str | Scalar) -> Aggregation:
9382 ...
9483
9584 @classmethod
96- def any (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
97- ...
85+ def any (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
9886
9987 @classmethod
100- def all (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
101- ...
88+ def all (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
10289
10390 @classmethod
104- def min (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
105- ...
91+ def min (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
10692
10793 @classmethod
108- def max (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
109- ...
94+ def max (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
11095
11196 @classmethod
112- def sum (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
113- ...
97+ def sum (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
11498
11599 @classmethod
116- def prod (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
117- ...
100+ def prod (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
118101
119102 @classmethod
120- def median (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
121- ...
103+ def median (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
122104
123105 @classmethod
124- def mean (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation :
125- ...
106+ def mean (cls , column : str , * , skip_nulls : bool | Scalar = True ) -> Aggregation : ...
126107
127108 @classmethod
128109 def std (
@@ -131,8 +112,7 @@ def std(
131112 * ,
132113 correction : float | Scalar = 1 ,
133114 skip_nulls : bool | Scalar = True ,
134- ) -> Aggregation :
135- ...
115+ ) -> Aggregation : ...
136116
137117 @classmethod
138118 def var (
@@ -141,9 +121,7 @@ def var(
141121 * ,
142122 correction : float | Scalar = 1 ,
143123 skip_nulls : bool | Scalar = True ,
144- ) -> Aggregation :
145- ...
124+ ) -> Aggregation : ...
146125
147126 @classmethod
148- def size (cls ) -> Aggregation :
149- ...
127+ def size (cls ) -> Aggregation : ...
0 commit comments