将参数传递给R中的自定义函数并过滤 [英] Pass arguments to custom function in R and filter

查看:89
本文介绍了将参数传递给R中的自定义函数并过滤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将列和参数传递给已定义的函数。但是我得到的数据集为空。例如:

I am trying to pass column and parameter into defined function. But I get empty dataset as result. Here is the example:

data = mtcars

param = 4

test_function = function(column, parameter){
data %>%
  filter(column == parameter) %>%
  mutate(mean_mpg = mean(mpg))
}

test_function("cyl", param) # I get empty table as result.

该怎么做?如果我传递文本而不是数字变量该怎么办?

How to do it? What if I pass text not numeric variable - anything changes?

感谢您的帮助!
M

Thank you for your help! M

推荐答案

当您给作为字符串时,我们需要取消对的引用,这可以通过 !! as.name(...)

As you give column as a string, we need to unquote column which we can achieve with !!as.name(...)

test_function = function(column, parameter) {
    data %>%
        filter((!!as.name(column)) == parameter) %>%
        mutate(mean_mpg = mean(mpg))
}

test_function("cyl", param)
#    mpg cyl  disp  hp drat    wt  qsec vs am gear carb mean_mpg
#1  22.8   4 108.0  93 3.85 2.320 18.61  1  1    4    1 26.66364
#2  24.4   4 146.7  62 3.69 3.190 20.00  1  0    4    2 26.66364
#3  22.8   4 140.8  95 3.92 3.150 22.90  1  0    4    2 26.66364
#4  32.4   4  78.7  66 4.08 2.200 19.47  1  1    4    1 26.66364
#5  30.4   4  75.7  52 4.93 1.615 18.52  1  1    4    2 26.66364
#6  33.9   4  71.1  65 4.22 1.835 19.90  1  1    4    1 26.66364
#7  21.5   4 120.1  97 3.70 2.465 20.01  1  0    3    1 26.66364
#8  27.3   4  79.0  66 4.08 1.935 18.90  1  1    4    1 26.66364
#9  26.0   4 120.3  91 4.43 2.140 16.70  0  1    5    2 26.66364
#10 30.4   4  95.1 113 3.77 1.513 16.90  1  1    5    2 26.66364
#11 21.4   4 121.0 109 4.11 2.780 18.60  1  1    4    2 26.66364

传递的符号

test_function2 = function(column, parameter) {
    column <- enquo(column)
    data %>%
        filter(!!column == parameter) %>%
        mutate(mean_mpg = mean(mpg))
}

test_function2(cyl, param)

或者-甚至更好-您可以编写一个函数,该函数同时接受

Or – perhaps even nicer – you can write a function that accepts both a symbol and string for column

test_function3 = function(column, parameter) {
    column <- rlang::parse_expr(quo_name(enquo(column)))
    data %>%
        filter(!!column == parameter) %>%
        mutate(mean_mpg = mean(mpg))
}
test_function3(cyl, param)
test_function3("cyl", param)

以上所有方法给出的结果相同。

All of the above methods give the same result.

这篇关于将参数传递给R中的自定义函数并过滤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆