2013-04-06 36 views
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 

感謝了很多任何幫助。

回答

2

試試這個:

In [1]: df = pd.DataFrame(dict(yyyy=[2000, 2000, 2000, 2000], 
           mm=[1, 2, 3, 4], day=[1, 1, 1, 1])) 

轉換爲整數:

In [2]: df['date'] = df['yyyy'] * 10000 + df['mm'] * 100 + df['day'] 

轉換爲字符串,然後日期時間(如pd.to_datetime將以不同的方式解釋整數):

In [3]: df['date'] = pd.to_datetime(df['date'].apply(str)) 

In [4]: df 
Out[4]: 
    day mm yyyy    date 
0 1 1 2000 2000-01-01 00:00:00 
1 1 2 2000 2000-02-01 00:00:00 
2 1 3 2000 2000-03-01 00:00:00 
3 1 4 2000 2000-04-01 00:00:00 
+0

這也是另一種方式http://stackoverflow.com/questions/15839360/pandas-python-can-datetime-be-used-with-vectorized-輸入 – Jeff 2013-04-06 17:51:56

+0

---非常感謝! – elelias 2013-04-07 09:45:09

相關問題