标签: r function dplyr
运行以下代码时,出现“!x错误:无效的参数类型” 错误。对我来说看起来很正确。嗯...出什么事了?我只是不知道。
library(tidyverse) addition_function <- function(x, y) { x <- enquo(x) y <- enquo(y) z <- (!!x) + (!!y) z } a <- 2 b <- 7 addition_function(a, b)