最佳答案
我在 Panda 中读入了一个 SQL 查询,这些值是 dtype‘ object’,尽管它们是字符串、日期和整数。我能够转换日期’对象’熊猫日期时间 dtype,但我得到了一个错误时,试图转换字符串和整数。
这里有一个例子:
>>> import pandas as pd
>>> df = pd.read_sql_query('select * from my_table', conn)
>>> df
id date purchase
1 abc1 2016-05-22 1
2 abc2 2016-05-29 0
3 abc3 2016-05-22 2
4 abc4 2016-05-22 0
>>> df.dtypes
id object
date object
purchase object
dtype: object
将 df['date']
转换为日期时间可行:
>>> pd.to_datetime(df['date'])
1 2016-05-22
2 2016-05-29
3 2016-05-22
4 2016-05-22
Name: date, dtype: datetime64[ns]
但是,当我试图将 df['purchase']
转换为整数时,出现了一个错误:
>>> df['purchase'].astype(int)
....
pandas/lib.pyx in pandas.lib.astype_intsafe (pandas/lib.c:16667)()
pandas/src/util.pxd in util.set_value_at (pandas/lib.c:67540)()
TypeError: long() argument must be a string or a number, not 'java.lang.Long'
注意: 我在尝试 .astype('float')
时也得到了类似的错误
当试图转换为字符串时,似乎什么也没有发生。
>>> df['id'].apply(str)
1 abc1
2 abc2
3 abc3
4 abc4
Name: id, dtype: object