题目
单项选择题
Supposed the 'date' column in the DataFrame shown has a dtype of object (i.e. string). How can it be converted to Pandas's datetime64 datatype?
选项
A.df['date']=pd.to_datetime(df['date'],format='%Y').year
B.df['date']=pd.to_datetime(df['date'],format='%Y').dt.year
C.df['date']=pd.to_datetime(df['date'],format='%Y')
D.df['date']=pd.to_datetime(df['date'],format='%y')
查看解析
标准答案
Please login to view
思路分析
Question restated: The DataFrame has a 'date' column with dtype object (strings). We want to convert it to Pandas datetime64.
Option 1: df['date']=pd.to_datetime(df['date'],format='%Y').year
This would attempt to parse with a four-digit year and then access the .year attribute, producing a scalar or a series of integers, not a......Login to view full explanation登录即可查看完整答案
我们收录了全球超50000道考试原题与详细解析,现在登录,立即获得答案。
类似问题
You have an employees table with the following columns: employeeId startDate (recorded as VARCHAR(255), storing both date and time of first entry) endDate (recorded as VARCHAR(255) as well) The startDate column is automatically filled when an employee first uses their card to enter the building. It records the date and time of their first entry. Last week, an accident occurred early in the morning, and the compliance team is investigating who was present at the time. To do this, you need to check when new employees arrived to determine who was in the building. Specifically, you want to verify whether new employees arrived before or after the accident. Which of the following is true?
In a consumer society, many adults channel creativity into buying things
Economic stress and unpredictable times have resulted in a booming industry for self-help products
People born without creativity never can develop it
更多留学生实用工具
希望你的学习变得更简单
加入我们,立即解锁 海量真题 与 独家解析,让复习快人一步!