estimate | R Documentation |
This function allows the estimation of model performances and their covariance by employing a prespecified estimation method.
estimate(comparison, method = "default", ..., args = NULL)
comparison |
SEPM.comparison, see |
method |
cahracter, speciying known estimation method (default: "default"). Alternativly a
custom SEPM.control object may be spcified, see |
... |
further (named) arguments to control$mapping. |
args |
named list of further arguments to control$mapping |
When no arguments are supplied other than comparison, maximum likelihood
(control = "default") is conducted. Call estimate_control
() for more information regarding
estimation methods.
An SEPM.comparison object which summarizes the estimates result.
y <- rep(1:0, times=c(3,7))
yhat <- cbind(model1 = rep(1:0, 5),
model2 = rep(0, 10),
model3 = rep(1:0, times=c(2,8)))
define_hypothesis("accuracy", threshold = 0.75) %>%
compare(predictions = yhat, labels = y) %>%
estimate()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.