topkusers | R Documentation |
Functions that provide the top k users to recommend the item Id_i.
topkusers(CF, Id_i, k = 10, type = "user")
CF |
A CF objec |
Id_i |
the item Id |
k |
an integer |
type |
"user" or "item" |
Jessica Kubrusly
objectCF_r <- CFbuilder(Data = movies[1:500,], Datatype = "ratings",
similarity = "pearson")
colnames(objectCF_r$MU)
topkusers(CF = objectCF_r, Id_i = "The Lego Movie")
topkusers(CF = objectCF_r, Id_i = "Her")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.