在R中设置功能参数的默认值

时间:2015-01-17 01:39:24

标签: r defaults

我想设置

byrow=TRUE

作为

的默认行为
matrix()
R中的

功能有没有办法做到这一点?

1 个答案:

答案 0 :(得分:9)

您可以使用formals<-替换功能。

但首先,将matrix()复制到一个新函数是个好主意,这样我们就不会搞乱使用它的任何其他函数,或者导致R因更改形式参数而导致的任何混淆。在这里,我将其称为myMatrix()

myMatrix <- matrix
formals(myMatrix)$byrow <- TRUE
## safety precaution - remove base from myMatrix() and set to global
environment(myMatrix) <- globalenv()

现在myMatrix()matrix()相同,但byrow参数(当然还有环境)除外。

> myMatrix
function (data = NA, nrow = 1, ncol = 1, byrow = TRUE, dimnames = NULL) 
{
    if (is.object(data) || !is.atomic(data)) 
        data <- as.vector(data)
    .Internal(matrix(data, nrow, ncol, byrow, dimnames, missing(nrow), 
        missing(ncol)))
}

这是一个测试运行,显示带有默认参数的matrix(),然后带有默认参数的myMatrix()

matrix(1:6, 2)
#      [,1] [,2] [,3]
# [1,]    1    3    5
# [2,]    2    4    6
myMatrix(1:6, 2)
#      [,1] [,2] [,3]
# [1,]    1    2    3
# [2,]    4    5    6