- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个有点复杂的自定义函数,因此为了简单起见,我创建了玩具示例。
假设我想编写一个函数 -
“带引号”
和不带引号
参数所以我编写了一个函数来运行 t 测试(按预期工作):
set.seed(123)
library(rlang)
library(tidyverse)
# t-test function
fun_t <- function(data, x, y) {
# make sure both quoted and unquoted arguments work
x <- rlang::ensym(x)
y <- rlang::ensym(y)
# t-test
broom::tidy(stats::t.test(
formula = rlang::new_formula({{ y }}, {{ x }}),
data = data
))
}
# works fine
fun_t(mtcars, am, wt)
#> # A tibble: 1 x 10
#> estimate estimate1 estimate2 statistic p.value parameter conf.low
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 1.36 3.77 2.41 5.49 6.27e-6 29.2 0.853
#> # ... with 3 more variables: conf.high <dbl>, method <chr>,
#> # alternative <chr>
fun_t(mtcars, "am", "wt")
#> # A tibble: 1 x 10
#> estimate estimate1 estimate2 statistic p.value parameter conf.low
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 1.36 3.77 2.41 5.49 6.27e-6 29.2 0.853
#> # ... with 3 more variables: conf.high <dbl>, method <chr>,
#> # alternative <chr>
然后我编写一个函数来运行方差分析(按预期工作):
# anova function
fun_anova <- function(data, x, y) {
# make sure both quoted and unquoted arguments work
x <- rlang::ensym(x)
y <- rlang::ensym(y)
# t-test
broom::tidy(stats::aov(
formula = rlang::new_formula({{ y }}, {{ x }}),
data = data
))
}
# works fine
fun_anova(mtcars, cyl, wt)
#> # A tibble: 2 x 6
#> term df sumsq meansq statistic p.value
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 cyl 1 18.2 18.2 47.4 0.000000122
#> 2 Residuals 30 11.5 0.384 NA NA
fun_anova(mtcars, "cyl", "wt")
#> # A tibble: 2 x 6
#> term df sumsq meansq statistic p.value
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 cyl 1 18.2 18.2 47.4 0.000000122
#> 2 Residuals 30 11.5 0.384 NA NA
然后我编写一个元函数来从上面选择适当的函数 -
fun_meta <- function(data, x, y) {
# make sure both quoted and unquoted arguments work
x <- rlang::ensym(x)
y <- rlang::ensym(y)
# which test to run?
if (nlevels(data %>% dplyr::pull({{ x }})) == 2L) {
.f <- fun_t
} else {
.f <- fun_anova
}
# executing the appropriate function
rlang::exec(
.fn = .f,
data = data,
x = x,
y = y
)
}
# using the meta-function
fun_meta(mtcars, am, wt)
#> Only strings can be converted to symbols
fun_meta(mtcars, "am", "wt")
#> Only strings can be converted to symbols
但这似乎不起作用。关于我在这里做错了什么以及如何让它发挥作用有什么想法吗?
最佳答案
问题似乎源于通过 rlang::exec() 将
code> 在你的元函数中。x = rlang::ensym(am)
等内容传递给您的各个函数
ensym() 函数仅接受字符串或符号,因此这样做会导致错误消息。鉴于此,将 x
和 y
参数转换为字符串应该会有所帮助。
所以元函数可以是:
fun_meta <- function(data, x, y) {
# make sure both quoted and unquoted arguments work
x <- rlang::ensym(x)
y <- rlang::ensym(y)
# which test to run?
if (dplyr::n_distinct(data %>% dplyr::pull({{ x }})) == 2L) {
.f <- fun_t
} else {
.f <- fun_anova
}
# executing the appropriate function
rlang::exec(
.fn = .f,
data = data,
x = rlang::as_string(x),
y = rlang::as_string(y)
)
}
(我从 nlevels
切换到 n_distinct()
因为 am
和 cyl
不是因子,所以我没有得到正确的结果来与您的原始结果进行比较。)
现在使用裸符号和字符串都可以:
fun_meta(mtcars, am, wt)
# A tibble: 1 x 10
estimate estimate1 estimate2 statistic p.value parameter conf.low conf.high
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 1.36 3.77 2.41 5.49 6.27e-6 29.2 0.853 1.86
# ... with 2 more variables: method <chr>, alternative <chr>
> fun_meta(mtcars, "am", "wt")
fun_meta(mtcars, "am", "wt")
# A tibble: 1 x 10
estimate estimate1 estimate2 statistic p.value parameter conf.low conf.high
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 1.36 3.77 2.41 5.49 6.27e-6 29.2 0.853 1.86
# ... with 2 more variables: method <chr>, alternative <chr>
关于r - 将 `rlang::exec` 与使用 `rlang::ensym` 的函数一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57328124/
我从文档中可以看到rlang::enquo()和rlang::quo()用于不同的上下文。因此,我使用了 rlang::enysm()最近在函数声明中(见下文)。然而,在另一个 SE 函数调用中,我收
对于整洁的评估来说相对较新,虽然我正在使用的函数可以工作,但我想知道为什么使用不同的辅助函数。例如,enquo 和 ensym 之间有什么区别?在我下面创建的用于捕获每日平均值和移动平均值的函数中,它
我正在尝试编写一个有点复杂的自定义函数,因此为了简单起见,我创建了玩具示例。 假设我想编写一个函数 - 自动决定运行适当的函数:例如,t 检验或方差分析。 接受“带引号” 和不带引号 参数 所以我编写
我是一名优秀的程序员,十分优秀!