R/see.R

Defines functions see

Documented in see

see<-
function(true,pred) {
  if(length(true)!=length(pred)) stop("Length of 'true' must equal 'pred'")
  res<-true-pred
  sum.sq<-sum(res^2)
  see<-sqrt(sum.sq/length(true))
  return(see)
}

Try the MASSTIMATE package in your browser

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

MASSTIMATE documentation built on Jan. 8, 2021, 2:22 a.m.