| recommend | R Documentation | 
This method generates top-n recommendations based on a model that has been trained before. Two main methods: recommendHPR, recommendMF. The first method recommends the highest predicted ratings on a user. Instead recommendMF (currently available only for IBKNN and UBKNN), recommends the most frequent item in the user's neighborhood.
recommendHPR(model, topN = 3) recommendMF(model, topN = 3, pt)
model | 
 the trained model of any algorithm.  | 
topN | 
 number of items to be recommended per user, class   | 
pt | 
 positive threshold, class   | 
Returns a list with suggested items for each user.
rrecsys.
myratings <- matrix(sample(c(0:5), size = 200, replace = TRUE, 
        prob = c(.6,.08,.08,.08,.08,.08)), nrow = 20, byrow = TRUE)
myratings <- defineData(myratings)
r <- rrecsys(myratings, alg = "FunkSVD", k = 2)
rec <- recommendHPR(r)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.