File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1351,13 +1351,22 @@ def groupby_function(
1351
1351
_local_template = """
1352
1352
Compute %(f)s of group values.
1353
1353
1354
+ Parameters
1355
+ ----------
1356
+ numeric_only : bool, default %(no)s
1357
+ Include only float, int, boolean columns. If None, will attempt to use
1358
+ everything, then use only numeric data.
1359
+ min_count : int, default %(mc)s
1360
+ The required number of valid values to perform the operation. If fewer
1361
+ than ``min_count`` non-NA values are present the result will be NA.
1362
+
1354
1363
Returns
1355
1364
-------
1356
1365
Series or DataFrame
1357
1366
Computed %(f)s of values within each group.
1358
1367
"""
1359
1368
1360
- @Substitution (name = "groupby" , f = name )
1369
+ @Substitution (name = "groupby" , f = name , no = numeric_only , mc = min_count )
1361
1370
@Appender (_common_see_also )
1362
1371
@Appender (_local_template )
1363
1372
def func (self , numeric_only = numeric_only , min_count = min_count ):
You can’t perform that action at this time.
0 commit comments