pandas.Series.convert_objects¶
-
Series.
convert_objects
(convert_dates=True, convert_numeric=False, convert_timedeltas=True, copy=True)[source]¶ 已弃用。
尝试为对象列推断更好的dtype
参数: convert_dates:boolean,default True
如果为True,请尽可能转换为日期。如果'胁迫',力转换,不可转换的值变为NaT。
convert_numeric:boolean,default False
如果为True,则尝试强制转换为数字(包括字符串),其中不可转换的值变为NaN。
convert_timedeltas:boolean,default True
如果为True,请尽可能转换为timedelta。如果'胁迫',力转换,不可转换的值变为NaT。
copy:boolean,default True
如果为True,即使不需要复制也返回副本(例如,未进行转换)。注意:这是为内部使用,不应与inplace混淆。
返回: 转换:与输入对象相同
也可以看看
pandas.to_datetime
- 将参数转换为datetime。
pandas.to_timedelta
- 将参数转换为timedelta。
pandas.to_numeric
- 返回固定频率timedelta索引,以天为默认值。