R/BicLoc.R

Defines functions BicLoc

# ' Bic of one regression
# ' 

BicLoc <- function(X = X, Y = Y, intercept = TRUE, sigma = TRUE, SumSquare = FALSE, methode = 1) {
  ret = .Call("BicLoc_cpp", X, Y, intercept, sigma, SumSquare, methode, PACKAGE = "CorReg")
  return(ret)
}

Try the CorReg package in your browser

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

CorReg documentation built on Feb. 20, 2020, 5:07 p.m.