我想设置
byrow=TRUE
作为默认行为
matrix()
R中的函数。有没有办法做到这一点?
您可以使用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