python pandas进行条件筛选时出现ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a...

  在使用pandas进行条件筛选时,使用了如下的代码:

    

    fzd_index=data[(data['实际辐照度']ma)].index
    原本以为,并没有太大的问题。但是出现了ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().” 这样的报错。
    正确方式:
        
        fzd_index=data[(data.实际辐照度ma)].index
    报错原因尚未了解。

转载于:https://www.cnblogs.com/sugar-k/p/11561584.html

你可能感兴趣的:(python pandas进行条件筛选时出现ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a...)