Prediction function for stochastic logistic regression
Makes predictions for new data from the fitted model. Model have already been fit to at least 1 batch of data.
## S3 method for class 'stoch_logistic' predict(object, newdata, type = "prob", ...)
object
: A stoch_logistic
object as output by function stochastic.logistic.regression
.newdata
: New data on which to make predictions.type
: Type of prediction to make. Can pass prob
to get probabilities for the positive class, or class
to get the predicted class....
: Not used.A vector with the predicted classes or probabilities for newdata
.
stochastic.logistic.regression