gpt4 book ai didi

r - 将 R 中的向量运算符的 drop 永久设置为 FALSE

转载 作者:行者123 更新时间:2023-12-04 21:14:45 30 4
gpt4 key购买 nike

如 R documentation 中所述, 运算符 '[' 是这样定义的:

x[i, j, ... , drop = TRUE]

有没有办法重新定义它以设置 drop参数默认值为 FALSE ?

最佳答案

`[` <- function(...) base::`[`(...,drop=FALSE)  

这应该可以防止 R 中的一些不受欢迎的行为,其中减少到一行或一列的矩阵会突然表现得像 c(number,number,number)而不是 matrix(c(number,number,number),ncol=1)

关于r - 将 R 中的向量运算符的 drop 永久设置为 FALSE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26736588/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com