R/evalRMSE.R

Defines functions evalRMSE

Documented in evalRMSE

#' 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)
}
ayurovsky/rnaGinesis documentation built on Dec. 19, 2021, 6:36 a.m.