#' Compare two sets of column data (automatic matching)
#'
#' @export
#' @import Metrics
evalRMSE = function(truth, observed)
{
RMSE = sapply(1:ncol(truth), function(i) rmse(truth[,i], observed[,i]))
return(RMSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.