https://github.com/cran/ensembleBMA
Raw File
Tip revision: 43445bd7c77b411840952ae6c8dae22164c67f91 authored by Chris Fraley on 05 January 2009, 00:00:00 UTC
version 4.0-2
Tip revision: 43445bd
controlBMAgamma0.R
`controlBMAgamma0` <-
function(maxIter = Inf, tol = sqrt(.Machine$double.eps), 
         nEsteps = 1, power = (1/3),
         start = list(varCoefs = NULL, weights = NULL)) 
{

 if (is.infinite(maxIter) && maxIter > 0) maxIter <- .Machine$integer.max
 list(maxIter = maxIter, tol = tol, nEsteps = nEsteps,
      power = power, start = start) 
}

back to top