@@ -1133,7 +1133,7 @@ def all(self, skipna=True):
1133
1133
Parameters
1134
1134
----------
1135
1135
skipna : bool, default True
1136
- Flag to ignore nan values during truth testing
1136
+ Flag to ignore nan values during truth testing.
1137
1137
1138
1138
Returns
1139
1139
-------
@@ -1254,7 +1254,7 @@ def std(self, ddof=1, *args, **kwargs):
1254
1254
Parameters
1255
1255
----------
1256
1256
ddof : int, default 1
1257
- Degrees of freedom
1257
+ Degrees of freedom.
1258
1258
1259
1259
Returns
1260
1260
-------
@@ -1277,7 +1277,7 @@ def var(self, ddof=1, *args, **kwargs):
1277
1277
Parameters
1278
1278
----------
1279
1279
ddof : int, default 1
1280
- Degrees of freedom
1280
+ Degrees of freedom.
1281
1281
1282
1282
Returns
1283
1283
-------
@@ -1312,7 +1312,7 @@ def sem(self, ddof=1):
1312
1312
Parameters
1313
1313
----------
1314
1314
ddof : int, default 1
1315
- Degrees of freedom
1315
+ Degrees of freedom.
1316
1316
1317
1317
Returns
1318
1318
-------
@@ -1624,7 +1624,7 @@ def pad(self, limit=None):
1624
1624
Parameters
1625
1625
----------
1626
1626
limit : int, optional
1627
- Limit of how many values to fill
1627
+ Limit of how many values to fill.
1628
1628
1629
1629
Returns
1630
1630
-------
@@ -1650,7 +1650,7 @@ def backfill(self, limit=None):
1650
1650
Parameters
1651
1651
----------
1652
1652
limit : int, optional
1653
- Limit of how many values to fill
1653
+ Limit of how many values to fill.
1654
1654
1655
1655
Returns
1656
1656
-------
@@ -1682,10 +1682,10 @@ def nth(self, n: Union[int, List[int]], dropna: Optional[str] = None) -> DataFra
1682
1682
Parameters
1683
1683
----------
1684
1684
n : int or list of ints
1685
- A single nth value for the row or a list of nth values
1685
+ A single nth value for the row or a list of nth values.
1686
1686
dropna : None or str, optional
1687
1687
Apply the specified dropna operation before counting which row is
1688
- the nth row. Needs to be None, 'any' or 'all'
1688
+ the nth row. Needs to be None, 'any' or 'all'.
1689
1689
1690
1690
Returns
1691
1691
-------
@@ -2100,13 +2100,13 @@ def rank(
2100
2100
* first: ranks assigned in order they appear in the array
2101
2101
* dense: like 'min', but rank always increases by 1 between groups
2102
2102
ascending : bool, default True
2103
- False for ranks by high (1) to low (N)
2103
+ False for ranks by high (1) to low (N).
2104
2104
na_option : {'keep', 'top', 'bottom'}, default 'keep'
2105
2105
* keep: leave NA values where they are
2106
2106
* top: smallest rank if ascending
2107
2107
* bottom: smallest rank if descending
2108
2108
pct : bool, default False
2109
- Compute percentage rank of data within each group
2109
+ Compute percentage rank of data within each group.
2110
2110
axis : int, default 0
2111
2111
The axis of the object over which to compute the rank.
2112
2112
@@ -2314,7 +2314,7 @@ def shift(self, periods=1, freq=None, axis=0, fill_value=None):
2314
2314
Parameters
2315
2315
----------
2316
2316
periods : int, default 1
2317
- Number of periods to shift
2317
+ Number of periods to shift.
2318
2318
freq : frequency string
2319
2319
axis : axis to shift, default 0
2320
2320
fill_value : optional
0 commit comments