我正在尝试根据熊猫数据框的日期列过滤行。我已将去年和上个月存储在变量中,现在想根据该年和月份过滤行。
我存储在以下变量中的年和月。
now = datetime.datetime.now()
last_month = now.month - 1 if now.month > 1 else 12
last_year = now.year - 1
如何过滤包含last_year和last_month的行?
答案 0 :(得分:2)
我认为您需要boolean indexing
和dt.year
并
dt.month
:
df[(df['Date'].dt.year == last_year) & (df['Date'].dt.month == last_month)]