基于日期的熊猫数据框过滤器行

时间:2019-01-04 07:12:19

标签: python pandas

我正在尝试根据熊猫数据框的日期列过滤行。我已将去年和上个月存储在变量中,现在想根据该年和月份过滤行。

这是数据帧。 enter image description here

我存储在以下变量中的年和月。

now = datetime.datetime.now()
last_month = now.month - 1 if now.month > 1 else 12
last_year = now.year - 1

如何过滤包含last_year和last_month的行?

1 个答案:

答案 0 :(得分:2)

我认为您需要boolean indexingdt.yeardt.month

df[(df['Date'].dt.year == last_year) & (df['Date'].dt.month == last_month)]