Prediction method for sentomodel
class, with usage along the lines of
predict.glmnet
, but simplified in terms of parameters.
# S3 method for sentomodel
predict(object, newx, type = "response",
offset = NULL, ...)
a sentomodel
object created with sento_model
.
a data matrix
used for the prediction(s), row-by-row; see
predict.glmnet
. The number of columns should be equal to sum(sentomodel$nVar)
, being the
number of original sentiment measures and other variables. The variables discarded in the regression process are
dealt with within this function, based on sentomodel$discarded
.
type of prediction required, a value from c("link", "response", "class")
, see documentation for
predict.glmnet
.
not used.
not used.
A prediction output depending on the type
argument.