1
目標:對於在接下來的9個月內具有日期的特定列中的單元格,將新列添加到Master,選擇「Yes」,日期即將到來,或者「No」,因爲日期不是接下來。使用熊貓,添加timedelta到主數據框中的新行?
我是熊貓新手,所以任何幫助都會很棒。我有一個數據框稱爲「Master」,因爲我將所有內容添加到數據框中,然後導出到Excel電子表格。使用下面的代碼,我爲日期創建了一個新的數據框,並試圖說「如果單元格處於日期狀態,請在新列中輸入」是「。
我懷疑我的問題是,我試圖把熊貓當作數組來處理,但是它實際上做的是在創建一個新的數據框時創建全新的索引並且不保留它如何映射到主。我的理解是否正確?如果是這樣,我怎樣才能以更優雅的方式實現我的目標?
def mess_with_time(Master):
now = datetime.datetime.now()
nine_months_in_the_future = str(datetime.datetime.today() + relativedelta(months=+8))
just_future_month=int(nine_months_in_the_future[5:7])
just_future_year=int(nine_months_in_the_future[0:4])
dates = Master[(Master['Contract End Date'] > '{}-{}-1'.format(now.year,now.month)) & (Master['Contract End Date'] <= '{}-{}-20'.format(just_future_year, just_future_month))]
Master['Contract End date coming up?'] = np.where(dates, 'Yes', 'No') #this breaks with
the error 'Length of values does not match length of index'
def Create_Master(file):
df = pd.ExcelFile('{}.xlsx'.format(file))
Master = df.parse('Main').fillna(0)