如何使用熊猫在关联规则旁边标记先行和后续

时间:2019-02-26 16:24:43

标签: python pandas dataframe associations apriori

我已经使用association_rules()使用熊猫创建关联规则的数据框。

frequent_itemsets = apriori(df, min_support=0.2, use_colnames=True)
rules = association_rules(frequent_itemsets, metric= "confidence", min_threshold = 0.6 )

我的输入看起来像这样

enter image description here

关联规则的输出如下所示

enter image description here

我想知道我该如何打印该列的前头和相邻的列,从而在打印时可以对其进行标记以备将来使用。 例如:

Age = 20, Smoke = n   => Chol = y 

0 个答案:

没有答案