?? mvr_wrappers.r
字號(hào):
### mvr_wrappers.R: plsr, pls and pcr wrappers for mvr### $Id: mvr_wrappers.R 132 2007-08-24 09:21:05Z bhm $plsr <- function(..., method = pls.options()$plsralg){ cl <- match.call() cl$method <- match.arg(method, c("kernelpls", "widekernelpls", "simpls", "oscorespls", "model.frame")) cl[[1]] <- as.name("mvr") res <- eval(cl, parent.frame()) res$call <- match.call() # Fix call component res}pcr <- function(..., method = pls.options()$pcralg){ cl <- match.call() cl$method <- match.arg(method, c("svdpc", "model.frame")) cl[[1]] <- as.name("mvr") res <- eval(cl, parent.frame()) res$call <- match.call() # Fix call component res}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -