计算每月的最后一个星期五在熊猫


问题内容

我已编写此函数来获取本月的最后一个星期四

def last_thurs_date(date):
    month=date.dt.month
    year=date.dt.year

    cal = calendar.monthcalendar(year, month)
    last_thurs_date = cal[4][4]
    if month < 10:
        thurday_date = str(year)+'-0'+ str(month)+'-' + str(last_thurs_date)
    else:
        thurday_date = str(year) + '-' + str(month) + '-' + str(last_thurs_date)
    return thurday_date

但是它不能与lambda函数一起使用。

datelist['Date'].map(lambda x: last_thurs_date(x))

日期列表在哪里

datelist = pd.DataFrame(pd.date_range(start = pd.to_datetime('01-01-2014',format='%d-%m-%Y')
                                      , end = pd.to_datetime('06-03-2019',format='%d-%m-%Y'),freq='D').tolist()).rename(columns={0:'Date'})
datelist['Date']=pd.to_datetime(datelist['Date'])

问题答案:

Jpp已经添加了解决方案,但只是添加了一个更具可读性的格式化字符串-
请访问此真棒网站

import calendar
def last_thurs_date(date):
    year, month = date.year, date.month
    cal = calendar.monthcalendar(year, month)
    # the last (4th week -> row) thursday (4th day -> column) of the calendar
    # except when 0, then take the 3rd week (February exception)
    last_thurs_date =  cal[4][4] if cal[4][4] > 0 else cal[3][4] 
    return f'{year}-{month:02d}-{last_thurs_date}'

还增加了一些逻辑-例如,您得到的2019-02-0是2月的整整4周。