R/func.calcRMSE.R

Defines functions func.calcRMSE

func.calcRMSE <-
function( yiCalc, yi, nu=0 ){
  n <- NROW(yiCalc) - nu
  
  return( sqrt( sum( (yiCalc - yi) * (yiCalc - yi) ) / n ) )
}

Try the cvq2 package in your browser

Any scripts or data that you put into this service are public.

cvq2 documentation built on May 2, 2019, 8:29 a.m.