1
什麼是最適合熊貓的方式實現這一點?我想從「年」,「月」和「天」欄目創建datetime對象列,但我想出了一些代碼,看起來方式太麻煩了:增加一個新的列與現有的值
myList=[]
for row in df_orders.iterrows(): #df_orders is the dataframe
myList.append(dt.datetime(row[1][0],row[1][1],row[1][2]))
#-->year, month and day are the 0th,1st and 2nd columns.
mySeries=pd.Series(myList,index=df_orders.index)
df_orders['myDateFormat']=mySeries
感謝了很多任何幫助。
這也是另一種方式http://stackoverflow.com/questions/15839360/pandas-python-can-datetime-be-used-with-vectorized-輸入 – Jeff 2013-04-06 17:51:56
---非常感謝! – elelias 2013-04-07 09:45:09