@@ -2170,8 +2170,7 @@ def mean(
2170
2170
numeric_only no longer accepts ``None`` and defaults to ``False``.
2171
2171
2172
2172
skipna : bool, default True
2173
- Exclude NA/null values. If an entire row/column is NA, the result
2174
- will be NA.
2173
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
2175
2174
2176
2175
.. versionadded:: 3.0.0
2177
2176
@@ -2271,8 +2270,7 @@ def median(self, numeric_only: bool = False, skipna: bool = True) -> NDFrameT:
2271
2270
numeric_only no longer accepts ``None`` and defaults to False.
2272
2271
2273
2272
skipna : bool, default True
2274
- Exclude NA/null values. If an entire row/column is NA, the result
2275
- will be NA.
2273
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
2276
2274
2277
2275
.. versionadded:: 3.0.0
2278
2276
@@ -2405,8 +2403,7 @@ def std(
2405
2403
numeric_only now defaults to ``False``.
2406
2404
2407
2405
skipna : bool, default True
2408
- Exclude NA/null values. If an entire row/column is NA, the result
2409
- will be NA.
2406
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
2410
2407
2411
2408
.. versionadded:: 3.0.0
2412
2409
@@ -2524,8 +2521,7 @@ def var(
2524
2521
numeric_only now defaults to ``False``.
2525
2522
2526
2523
skipna : bool, default True
2527
- Exclude NA/null values. If an entire row/column is NA, the result
2528
- will be NA.
2524
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
2529
2525
2530
2526
.. versionadded:: 3.0.0
2531
2527
@@ -2742,8 +2738,7 @@ def sem(
2742
2738
numeric_only now defaults to ``False``.
2743
2739
2744
2740
skipna : bool, default True
2745
- Exclude NA/null values. If an entire row/column is NA, the result
2746
- will be NA.
2741
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
2747
2742
2748
2743
.. versionadded:: 3.0.0
2749
2744
@@ -3021,8 +3016,7 @@ def prod(
3021
3016
than ``min_count`` non-NA values are present the result will be NA.
3022
3017
3023
3018
skipna : bool, default True
3024
- Exclude NA/null values. If an entire row/column is NA, the result
3025
- will be NA.
3019
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
3026
3020
3027
3021
.. versionadded:: 3.0.0
3028
3022
@@ -3242,8 +3236,7 @@ def first(
3242
3236
The required number of valid values to perform the operation. If fewer
3243
3237
than ``min_count`` valid values are present the result will be NA.
3244
3238
skipna : bool, default True
3245
- Exclude NA/null values. If an entire row/column is NA, the result
3246
- will be NA.
3239
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
3247
3240
3248
3241
.. versionadded:: 2.2.1
3249
3242
@@ -3329,8 +3322,7 @@ def last(
3329
3322
The required number of valid values to perform the operation. If fewer
3330
3323
than ``min_count`` valid values are present the result will be NA.
3331
3324
skipna : bool, default True
3332
- Exclude NA/null values. If an entire row/column is NA, the result
3333
- will be NA.
3325
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
3334
3326
3335
3327
.. versionadded:: 2.2.1
3336
3328
@@ -5530,8 +5522,7 @@ def _idxmax_idxmin(
5530
5522
numeric_only : bool, default False
5531
5523
Include only float, int, boolean columns.
5532
5524
skipna : bool, default True
5533
- Exclude NA/null values. If an entire row/column is NA, the result
5534
- will be NA.
5525
+ Exclude NA/null values. If an entire group is NA, the result will be NA.
5535
5526
ignore_unobserved : bool, default False
5536
5527
When True and an unobserved group is encountered, do not raise. This used
5537
5528
for transform where unobserved groups do not play an impact on the result.
0 commit comments