创建过滤器功能时出错

时间:2017-10-03 22:53:07

标签: r function

锐化关于r中函数的概念,我决定创建一个过滤函数,该函数根据

等条件成功提取数据
searchController

不知怎的,我只是得到一个空的tibble,我无法调试我出错的地方。我附上了我的数据集结构和我使用的代码的图片。期待您对此提出的建议和指导。

structure of the data frame

the code I used with the result I got

1 个答案:

答案 0 :(得分:0)

试试这个:

CrimeFilter <- function(x, y, z){
    for(i in seq_along(CrimeAnnual2012_2015Updated)){
            return(subset(CrimeAnnual2012_2015Updated,
                          Public <= x & CrimeType == y & Year == z))
    }
}

CrimeFilter(100, "Murder", "012012")