I have created an evaluation scheme using the recommenderlab
package with binaryRatingMatrix
. How can I see which all users from the actual data are there in unknown test set?
scheme <- evaluationScheme(data = data1, method = "split", train = 0.9, given = 3)
where data1
is binaryRatingMatrix
. I would like to extract the list of users who are in the unknown set getData(scheme, "unknown")
?
This will print out the first column which is all the userIds.