gpt4 book ai didi

r - 使用自定义函数进行数据框矢量过滤

转载 作者:行者123 更新时间:2023-12-04 04:34:29 24 4
gpt4 key购买 nike

我需要根据当前行和对整个数据框列的一些计算来获取我的数据框的子集。我正在尝试使用 R 的向量表示法根据自定义函数过滤掉不需要的行:

myDataFrame[customFn(myDataFrame$A, ????? <<here I need to reference not just the current value of myDataFrame$A, but the whole vector myDataFrame$A>> ),]

我的 customFn 有 2 个参数:一个数字和一个向量,它返回一个 bool 值向量。如何将整个列向量传递给函数?我不想使用 apply 因为我认为它会比矢量过滤慢得多

谢谢!

最佳答案

正如@Justin 指出的那样 - 只要 customFn返回一个与数据框长度相同的逻辑向量,你会没事的。例如

# Define a function to return a vector of logicals based on the mtcars$mpg
keepers <- function(d, lower=18, upper=20) {
to_keep <- rep(TRUE, nrow(d))
to_keep[(d$mpg < lower) | (d$mpg > upper)] <- FALSE
to_keep # True if d$mpg is between upper and lower
}

mtcars[keepers(mtcars), ]

关于r - 使用自定义函数进行数据框矢量过滤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19983311/

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