@@ -800,7 +800,7 @@ def swaplevel(self, i=-2, j=-1, axis=0):
800
800
801
801
Returns
802
802
-------
803
- swapped : type of caller (new object)
803
+ swapped : same type as caller (new object)
804
804
805
805
.. versionchanged:: 0.18.1
806
806
@@ -1073,7 +1073,7 @@ def _set_axis_name(self, name, axis=0, inplace=False):
1073
1073
1074
1074
Returns
1075
1075
-------
1076
- renamed : type of caller or None if inplace=True
1076
+ renamed : same type as caller or None if inplace=True
1077
1077
1078
1078
See Also
1079
1079
--------
@@ -2468,7 +2468,7 @@ def get(self, key, default=None):
2468
2468
2469
2469
Returns
2470
2470
-------
2471
- value : type of items contained in object
2471
+ value : same type as items contained in object
2472
2472
"""
2473
2473
try :
2474
2474
return self [key ]
@@ -2768,7 +2768,7 @@ def __delitem__(self, key):
2768
2768
2769
2769
Returns
2770
2770
-------
2771
- taken : type of caller
2771
+ taken : same type as caller
2772
2772
An array-like containing the elements taken from the object.
2773
2773
2774
2774
See Also
@@ -2824,7 +2824,7 @@ def _take(self, indices, axis=0, is_copy=True):
2824
2824
2825
2825
Returns
2826
2826
-------
2827
- taken : type of caller
2827
+ taken : same type as caller
2828
2828
An array-like containing the elements taken from the object.
2829
2829
2830
2830
See Also
@@ -3033,7 +3033,7 @@ def select(self, crit, axis=0):
3033
3033
3034
3034
Returns
3035
3035
-------
3036
- selection : type of caller
3036
+ selection : same type as caller
3037
3037
"""
3038
3038
warnings .warn ("'select' is deprecated and will be removed in a "
3039
3039
"future release. You can use "
@@ -3924,7 +3924,7 @@ def head(self, n=5):
3924
3924
3925
3925
Returns
3926
3926
-------
3927
- obj_head : type of caller
3927
+ obj_head : same type as caller
3928
3928
The first `n` rows of the caller object.
3929
3929
3930
3930
See Also
@@ -4447,7 +4447,7 @@ def _consolidate(self, inplace=False):
4447
4447
4448
4448
Returns
4449
4449
-------
4450
- consolidated : type of caller
4450
+ consolidated : same type as caller
4451
4451
"""
4452
4452
inplace = validate_bool_kwarg (inplace , 'inplace' )
4453
4453
if inplace :
@@ -4916,7 +4916,7 @@ def astype(self, dtype, copy=True, errors='raise', **kwargs):
4916
4916
4917
4917
Returns
4918
4918
-------
4919
- casted : type of caller
4919
+ casted : same type as caller
4920
4920
4921
4921
Examples
4922
4922
--------
@@ -6691,7 +6691,7 @@ def asfreq(self, freq, method=None, how=None, normalize=False,
6691
6691
6692
6692
Returns
6693
6693
-------
6694
- converted : type of caller
6694
+ converted : same type as caller
6695
6695
6696
6696
Examples
6697
6697
--------
@@ -6772,7 +6772,7 @@ def at_time(self, time, asof=False):
6772
6772
6773
6773
Returns
6774
6774
-------
6775
- values_at_time : type of caller
6775
+ values_at_time : same type as caller
6776
6776
6777
6777
Examples
6778
6778
--------
@@ -6826,7 +6826,7 @@ def between_time(self, start_time, end_time, include_start=True,
6826
6826
6827
6827
Returns
6828
6828
-------
6829
- values_between_time : type of caller
6829
+ values_between_time : same type as caller
6830
6830
6831
6831
Examples
6832
6832
--------
@@ -7145,7 +7145,7 @@ def first(self, offset):
7145
7145
7146
7146
Returns
7147
7147
-------
7148
- subset : type of caller
7148
+ subset : same type as caller
7149
7149
7150
7150
See Also
7151
7151
--------
@@ -7209,7 +7209,7 @@ def last(self, offset):
7209
7209
7210
7210
Returns
7211
7211
-------
7212
- subset : type of caller
7212
+ subset : same type as caller
7213
7213
7214
7214
See Also
7215
7215
--------
0 commit comments