我正在使用不同的购物篮来制定关联规则,并且只想查看产生特定结果的规则。我的规则在下面的代码中定义
rules = association_rules(fi, metric="confidence", min_threshold=0.7)
rules['antecendent_len']=rules['antecedents'].apply(lambda x: len(x))
rules = rules[(rules['antecendent_len'] >=2)]
我专门在RHS中寻找“石灰”,可以在规则列表中看到它,但是当我尝试以下操作时,我得到一个空白的df作为回报:
rules = rules[(rules['consequents'] == "Limes")]
有人知道我该如何过滤吗?