您好我在 Rpriori 工作。在此算法中,我们使用 itemFrequency()函数返回数据中的热门项目。现在我想获得热门项目的值。不是 标签。并将其分配给vector.Thanks提前
请记住:name参数给出了top items的名称。只需要有值!!!!!
答案 0 :(得分:1)
它将返回包含名称和值的数字向量。
items <- itemFrequency(myTransactionsData, type = "absolute")
head(sort(items, decreasing = TRUE), n = 20)
但是如果你只想要这个值,那就试试这样的
print(items[["whole milk"]])
Output: 2513