@@ -4951,10 +4951,10 @@ def pipe(self, func, *args, **kwargs):
4951
4951
Returns
4952
4952
-------
4953
4953
DataFrame, Series or scalar
4954
- if DataFrame.agg is called with a single function, returns a Series
4955
- if DataFrame.agg is called with several functions, returns a DataFrame
4956
- if Series.agg is called with single function, returns a scalar
4957
- if Series.agg is called with several functions, returns a Series
4954
+ - If DataFrame.agg is called with a single function, returns a Series.
4955
+ - If DataFrame.agg is called with several functions, returns a DataFrame.
4956
+ - If Series.agg is called with single function, returns a scalar.
4957
+ - If Series.agg is called with several functions, returns a Series.
4958
4958
4959
4959
%(see_also)s
4960
4960
@@ -5350,7 +5350,7 @@ def get_values(self):
5350
5350
Returns
5351
5351
-------
5352
5352
numpy.ndarray
5353
- Numpy representation of DataFrame
5353
+ Numpy representation of DataFrame.
5354
5354
5355
5355
See Also
5356
5356
--------
@@ -5429,7 +5429,7 @@ def get_ftype_counts(self):
5429
5429
-------
5430
5430
dtype : Series
5431
5431
Series with the count of columns with each type and
5432
- sparsity (dense/sparse)
5432
+ sparsity (dense/sparse).
5433
5433
5434
5434
See Also
5435
5435
--------
@@ -6658,7 +6658,7 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None,
6658
6658
-------
6659
6659
Series or DataFrame
6660
6660
Returns the same object type as the caller, interpolated at
6661
- some or all ``NaN`` values
6661
+ some or all ``NaN`` values.
6662
6662
6663
6663
See Also
6664
6664
--------
@@ -6882,7 +6882,7 @@ def asof(self, where, subset=None):
6882
6882
* Series: when `self` is a Series and `where` is an array-like,
6883
6883
or when `self` is a DataFrame and `where` is a scalar
6884
6884
* DataFrame : when `self` is a DataFrame and `where` is an
6885
- array-like
6885
+ array-like.
6886
6886
6887
6887
See Also
6888
6888
--------
@@ -7236,7 +7236,7 @@ def clip(self, lower=None, upper=None, axis=None, inplace=False,
7236
7236
-------
7237
7237
Series or DataFrame
7238
7238
Same type as calling object with the values outside the
7239
- clip boundaries replaced
7239
+ clip boundaries replaced.
7240
7240
7241
7241
Examples
7242
7242
--------
@@ -8387,7 +8387,7 @@ def ranker(data):
8387
8387
Returns
8388
8388
-------
8389
8389
(left, right) : (%(klass)s, type of other)
8390
- Aligned objects
8390
+ Aligned objects.
8391
8391
""" )
8392
8392
8393
8393
@Appender (_shared_docs ['align' ] % _shared_doc_kwargs )
0 commit comments