R/qsquare.R

Defines functions qsquare

Documented in qsquare

qsquare <-
function( modelData, predictData, formula = NULL, nu = 0, round = 4, extOut = FALSE, extOutFile = NULL ){
#  call <- match.call()
  N <- nrow(predictData)

  #forward to the actual method
  x <- mainfunc.q2( modelData, predictData, formula, N, 1, nu, round, extOut, extOutFile, match.call() )
  return(x)
}

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.