R/rmse.R

rmse <- function(z, zhat) {
  sqrt(sum(z - zhat)^2/length(z))
}
dfleis/hierbasis2 documentation built on May 17, 2019, 7:03 p.m.