Nothing
`get.models` <-
function(object, subset, cluster = NA, ...) {
if (!any(ok <- inherits(object, c("model.selection", "averaging"), which = TRUE)))
stop("'object' must be a \"model.selection\" or \"averaging\" object")
hasModelList <- is.list(attr(object, "modelList"))
isAveraging <- ok[2L] == 1L
if(isAveraging && !hasModelList) stop("need \"averaging\" object with a model list")
calls <- attr(object, "model.calls")
if((hasNoCalls <- is.null(calls)) && !hasModelList)
stop("'object' has no \"model.calls\" attribute")
if(!missing(subset)) {
r <- subset_eval(substitute(subset),
if(isAveraging) object$msTable else object, parent.frame())
if(!isTRUE(r) && !anyNA(r)) {
if(is.character(r)) r <- match(r, dimnames(object)[[1L]])
} else r <- TRUE
} else {
stop("'subset' is missing (use subset=TRUE to evaluate all models)")
}
newargs <- match.call()
newargs[[1L]] <- NULL
newargs[c('object', 'subset', 'cluster')] <- NULL
naNames <- names(newargs)
if(hasModelList) {
.DebugPrint(hasModelList)
if(length(newargs) == 0L) {
models <- attr(object, "modelList")[r]
attr(models, "rank") <- attr(object, "rank")
return(models)
}
.DebugPrint("refitting...")
if(hasNoCalls) calls <- lapply(attr(object, "modelList")[r], get_call)
} else calls <- calls[r]
if(length(newargs)) for(i in seq_along(calls)) calls[[i]][naNames] <- newargs
doParallel <- inherits(cluster, "cluster")
if(doParallel) {
.parallelPkgCheck()
# all this is to trick the R-check
clusterCall <- get("clusterCall")
clusterApply <- get("clusterApply")
models <- clusterApply(cluster, calls, "eval", envir = .GlobalEnv)
} else {
glo <- attr(object, "global")
if(is.null(glo)) {
models <- lapply(calls, function(cl) {
eval(cl, envir = environment(formula(cl)))
})
} else {
env <- attr(tryCatch(terms(glo), error = function(...) terms(formula(glo))),
".Environment")
models <- lapply(calls, eval, envir = env)
}
}
for(i in c("rank", "beta"))
attr(models, i) <- attr(object, i)
return(models)
}
`pget.models` <-
function(object, cluster = NA, subset, ...) {
.Deprecated("get.models")
get.models(object, subset, cluster, ...)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.