我需要根据当前行和对整个数据框列的一些计算来获取我的数据框的一个子集。我正在尝试使用 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 个参数:一个数字和一个向量,它返回一个布尔向量。如何将整个列向量传递给函数?我不想使用 apply 因为我认为它会比矢量过滤慢得多
谢谢!