我已经使用association_rules()使用熊猫创建关联规则的数据框。
frequent_itemsets = apriori(df, min_support=0.2, use_colnames=True)
rules = association_rules(frequent_itemsets, metric= "confidence", min_threshold = 0.6 )
我的输入看起来像这样
关联规则的输出如下所示
我想知道我该如何打印该列的前头和相邻的列,从而在打印时可以对其进行标记以备将来使用。 例如:
Age = 20, Smoke = n => Chol = y