有以下声明:rules = association_rules(frequent_itemsets, metric="lift", min_threshold=1.2)我得到一个格式的规则数据框:frozenset({'Co_Apples'})但我需要将 a 提取Co_Apples为字符串。我怎样才能做到这一点?
2 回答
智慧大石
TA贡献1946条经验 获得超3个赞
您可以使用以下代码从frozenset 类型列中获取字符串,然后将该字符串转换为unicode。
rules["antecedents"] = rules["antecedents"].apply(lambda x: list(x)[0]).astype("unicode") rules["consequents"] = rules["consequents"].apply(lambda x: list(x)[0]).astype("unicode")
慕标5832272
TA贡献1966条经验 获得超4个赞
rules["antecedents"] = rules["antecedents"].apply(lambda x: ', '.join(list(x))).astype("unicode")
添加回答
举报
0/150
提交
取消