R Apriori 算法 - 如何将 ItemsFrequency() 函数的最高项目值分配给向量?
R Apriori algorithm - how to assign top items values of ItemsFrequency() function to a vector?
你好,我在 Rpriori 工作。在此算法中,我们使用 itemFrequency() 函数,其中 return 来自 data.Now 的顶级项目我想获得 value热门项目。不是
标签。并预先分配给一个vector.Thanks
记住:name参数给top的名字items.only需要有值!!!!!
它将return包含名称和值的数值向量。
items <- itemFrequency(myTransactionsData, type = "absolute")
head(sort(items, decreasing = TRUE), n = 20)
但如果你只想要值,那么试试这样的方法
print(items[["whole milk"]])
Output: 2513
你好,我在 Rpriori 工作。在此算法中,我们使用 itemFrequency() 函数,其中 return 来自 data.Now 的顶级项目我想获得 value热门项目。不是 标签。并预先分配给一个vector.Thanks
记住:name参数给top的名字items.only需要有值!!!!!
它将return包含名称和值的数值向量。
items <- itemFrequency(myTransactionsData, type = "absolute")
head(sort(items, decreasing = TRUE), n = 20)
但如果你只想要值,那么试试这样的方法
print(items[["whole milk"]])
Output: 2513