R/erpath.R

Defines functions erpath

erpath <- function(x, y, nlam, flmin, ulam, isd, intr, eps, dfmax, pmax, jd, pf,
                   pf2, maxit, lam2, omega, nobs, nvars, vnames) {
###############################################################################
  ## data setup
  storage.mode(y) <- "double"
  storage.mode(x) <- "double"
  if (omega <= 0 || omega >= 1)
    stop("omega must be in (0,1)")
  omega <- as.double(omega)
###############################################################################
  ## call Fortran core
  fit <- .Fortran("erlassoNET", omega, lam2, nobs, nvars, x, y, jd, pf, pf2,
                  dfmax, pmax, nlam, flmin, ulam, eps, isd, intr, maxit,
                  nalam = integer(1), b0 = double(nlam),
                  beta = double(pmax * nlam), ibeta = integer(pmax),
                  nbeta = integer(nlam), alam = double(nlam),
                  npass = integer(1), jerr = integer(1), PACKAGE = "gcdnet")
###############################################################################
  ## output
  outlist <- getoutput(fit, maxit, pmax, nvars, vnames)
  outlist <- c(outlist, list(npasses = fit$npass, jerr = fit$jerr))
  class(outlist) <- c("erpath")
  outlist
}

Try the gcdnet package in your browser

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

gcdnet documentation built on Aug. 14, 2022, 9:05 a.m.