predict.stoch_logistic {stochQN} | R Documentation |
Prediction function for stochastic logistic regression
Description
Makes predictions for new data from the fitted model. Model have already been fit to at least 1 batch of data.
Usage
## S3 method for class 'stoch_logistic'
predict(object, newdata, type = "prob", ...)
Arguments
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. |
Value
A vector with the predicted classes or probabilities for 'newdata'.
See Also
stochastic.logistic.regression
[Package stochQN version 0.1.2-1 Index]