@@ -212,9 +212,9 @@ class providing the base-class of operations.
212
212
string indicating the keyword of `callable` that expects the
213
213
%(klass)s object.
214
214
args : iterable, optional
215
- positional arguments passed into `func`.
215
+ Positional arguments passed into `func`.
216
216
kwargs : dict, optional
217
- a dictionary of keyword arguments passed into `func`.
217
+ A dictionary of keyword arguments passed into `func`.
218
218
219
219
Returns
220
220
-------
@@ -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,9 +1682,9 @@ 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
- apply the specified dropna operation before counting which row is
1687
+ Apply the specified dropna operation before counting which row is
1688
1688
the nth row. Needs to be None, 'any' or 'all'
1689
1689
1690
1690
Returns
@@ -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