Description Usage Arguments Examples
Calculates the log loss or entropy loss for a binary outcome
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | logLoss(...)
## Default S3 method:
logLoss(actual, predicted, distribution = "binomial", ...)
## S3 method for class 'glm'
logLoss(modelObject, ...)
## S3 method for class 'randomForest'
logLoss(modelObject, ...)
## S3 method for class 'glmerMod'
logLoss(modelObject, ...)
## S3 method for class 'gbm'
logLoss(modelObject, ...)
## S3 method for class 'rpart'
logLoss(modelObject, ...)
|
... |
additional parameters to be passed the the s3 methods |
actual |
a binary vector of the labels |
predicted |
a vector of predicted values |
distribution |
the distribution of the loss function needed |
modelObject |
the model object. Currently supported |
1 2 3 4 5 6 7 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.