使用ipython筆記本來運行使用熊貓的一些分析。但是,即時通訊運行與下面的函數,日期問題屬性未找到ipython日期屬性
def get_date(time_unit):
t = tickets['purchased date'].map(lambda x: x.time_unit)
return t
# calling it like this produces this error
get_date('week')
AttributeError: 'Timestamp' object has no attribute 'time_unit'
但這個工程沒有功能
tickets['purchased date'].map(lambda x: x.week)
我嘗試創建函數get_date(time_unit)
,因爲我將來需要使用的功能有:get_date('week')
及以後的get_date('year')
等。
如何將字符串im傳遞給有效的屬性來使用函數,因爲我打算使用它?
謝謝。
哦,我在看setattr(),但無法弄清楚如何正確使用它,結果我使用了不正確的幫手。 – Joseph