| rmse_mtl | R Documentation |
Pooled RMSE over every non-NA cell of the true/predicted
matrices, for orthoMTL fits in regression mode
(logistic = FALSE, survival = FALSE).
rmse_mtl(true.label.mat, pred.label.mat)
true.label.mat |
A numeric matrix of true responses
( |
pred.label.mat |
A numeric matrix of predictions of the same
dimensions (as produced by |
A single non-negative numeric value (lower is better).
r2_mtl, cindex_mtl
set.seed(1)
Y <- matrix(rnorm(30), 10, 3)
P <- Y + matrix(rnorm(30, sd = 0.1), 10, 3)
rmse_mtl(Y, P)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.