Represents a recommender model learned for a given data set (a rating matrix).
Objects are created by
the creator function Recommender(data, method, parameter = NULL)
method
:Object of class "character"
;
used recommendation method.
dataType
:Object of class "character"
;
concrete class of the input data.
ntrain
:Object of class "integer"
;
size of training set.
model
:Object of class "list"
; the model.
predict
:Object of class "function"
; code to compute
a recommendation using the model.
signature(x = "Recommender")
: retrieve the model.
signature(object = "Recommender")
: create
recommendations for new data (argument newdata
).
signature(object = "Recommender")
See Recommender
for the constructor function and
a description of availble methods.