@@ -2034,7 +2034,7 @@ def _reindex_multi(self, axes, copy, fill_value):
2034
2034
--------
2035
2035
>>> df.reindex_axis(['A', 'B', 'C'], axis=1)
2036
2036
2037
- See also
2037
+ See Also
2038
2038
--------
2039
2039
reindex, reindex_like
2040
2040
@@ -2740,6 +2740,8 @@ def _convert(self, datetime=False, numeric=False, timedelta=False,
2740
2740
def convert_objects (self , convert_dates = True , convert_numeric = False ,
2741
2741
convert_timedeltas = True , copy = True ):
2742
2742
"""
2743
+ Deprecated.
2744
+
2743
2745
Attempt to infer better dtype for object columns
2744
2746
2745
2747
Parameters
@@ -2758,6 +2760,13 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
2758
2760
conversion was done). Note: This is meant for internal use, and
2759
2761
should not be confused with inplace.
2760
2762
2763
+ See Also
2764
+ --------
2765
+ pandas.to_datetime : Convert argument to datetime.
2766
+ pandas.to_timedelta : Convert argument to timedelta.
2767
+ pandas.to_numeric : Return a fixed frequency timedelta index,
2768
+ with day as the default.
2769
+
2761
2770
Returns
2762
2771
-------
2763
2772
converted : same as input object
@@ -2808,7 +2817,7 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
2808
2817
or the string 'infer' which will try to downcast to an appropriate
2809
2818
equal type (e.g. float64 to int64 if possible)
2810
2819
2811
- See also
2820
+ See Also
2812
2821
--------
2813
2822
reindex, asfreq
2814
2823
@@ -2988,7 +2997,7 @@ def replace(self, to_replace=None, value=None, inplace=False, limit=None,
2988
2997
The method to use when for replacement, when ``to_replace`` is a
2989
2998
``list``.
2990
2999
2991
- See also
3000
+ See Also
2992
3001
--------
2993
3002
NDFrame.reindex
2994
3003
NDFrame.asfreq
@@ -3299,7 +3308,7 @@ def isnull(self):
3299
3308
"""
3300
3309
Return a boolean same-sized object indicating if the values are null.
3301
3310
3302
- See also
3311
+ See Also
3303
3312
--------
3304
3313
notnull : boolean inverse of isnull
3305
3314
"""
@@ -3309,7 +3318,7 @@ def notnull(self):
3309
3318
"""Return a boolean same-sized object indicating if the values are
3310
3319
not null.
3311
3320
3312
- See also
3321
+ See Also
3313
3322
--------
3314
3323
isnull : boolean inverse of notnull
3315
3324
"""
@@ -3387,7 +3396,7 @@ def clip_upper(self, threshold, axis=None):
3387
3396
axis : int or string axis name, optional
3388
3397
Align object with threshold along the given axis.
3389
3398
3390
- See also
3399
+ See Also
3391
3400
--------
3392
3401
clip
3393
3402
@@ -3411,7 +3420,7 @@ def clip_lower(self, threshold, axis=None):
3411
3420
axis : int or string axis name, optional
3412
3421
Align object with threshold along the given axis.
3413
3422
3414
- See also
3423
+ See Also
3415
3424
--------
3416
3425
clip
3417
3426
@@ -4571,7 +4580,7 @@ def abs(self):
4571
4580
4572
4581
The include, exclude arguments are ignored for Series.
4573
4582
4574
- See also
4583
+ See Also
4575
4584
--------
4576
4585
DataFrame.select_dtypes
4577
4586
"""
0 commit comments