@@ -2260,19 +2260,23 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
2260
2260
2261
2261
Parameters
2262
2262
----------
2263
- convert_dates : if True, attempt to soft convert dates, if 'coerce',
2264
- force conversion (and non-convertibles get NaT)
2265
- convert_numeric : if True attempt to coerce to numbers (including
2266
- strings), non-convertibles get NaN
2267
- convert_timedeltas : if True, attempt to soft convert timedeltas, if 'coerce',
2268
- force conversion (and non-convertibles get NaT)
2269
- copy : Boolean, if True, return copy even if no copy is necessary
2270
- (e.g. no conversion was done), default is True.
2271
- It is meant for internal use, not to be confused with `inplace` kw.
2263
+ convert_dates : boolean, default True
2264
+ If True, convert to date where possible. If 'coerce', force
2265
+ conversion, with unconvertible values becoming NaT.
2266
+ convert_numeric : boolean, default False
2267
+ If True, attempt to coerce to numbers (including strings), with
2268
+ unconvertible values becoming NaN.
2269
+ convert_timedeltas : boolean, default True
2270
+ If True, convert to timedelta where possible. If 'coerce', force
2271
+ conversion, with unconvertible values becoming NaT.
2272
+ copy : boolean, default True
2273
+ If True, return a copy even if no copy is necessary (e.g. no
2274
+ conversion was done). Note: This is meant for internal use, and
2275
+ should not be confused with inplace.
2272
2276
2273
2277
Returns
2274
2278
-------
2275
- converted : asm as input object
2279
+ converted : same as input object
2276
2280
"""
2277
2281
return self ._constructor (
2278
2282
self ._data .convert (convert_dates = convert_dates ,
0 commit comments