如何在Pandas中将error ='coerce'从pd.read_excel传递到pd.to_datetime?

时间:2019-10-15 15:32:33

标签: python excel pandas datetime

使用pd.read_excel时转换某些日期字段时遇到问题

cols_A8_J2007[i] = pd.read_excel(i, ('sheet'+str(j)), headers = 1, skiprows = 6, nrows=2000, usecols = 'A:J', converters = {'Expired': pd.to_datetime, 'Valid Until': pd.to_datetime})

我希望能够在调用函数时传递errors='coerce',但是由于只传递函数,我不确定该如何做。因此必须为read_excel传递一些其他参数,以便在调用pd.to_datetime时传递该参数。

Pandas error trying to convert string into integer

0 个答案:

没有答案