ValueError:在Pandas中检查值时,系列的真值不明确

时间:2018-12-07 03:21:05

标签: python pandas

我有一个从CSV创建的数据框,其中我在名为DATE的列中解析日期。我在各行中循环浏览,我想跳过1980年的所有内容。这是我的代码:

for index, row in df.iterrows():

    if df['DATE'].dt.year == 1980:

        continue

我收到以下错误:

ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().

我可以打印出正确的日期。任何指针将不胜感激。

0 个答案:

没有答案